[Python-checkins] cpython: Fix a spelling mistake in a comment.

brett.cannon python-checkins at python.org
Mon Aug 6 01:53:10 CEST 2012


http://hg.python.org/cpython/rev/9066dca1a9b3
changeset:   78448:9066dca1a9b3
user:        Brett Cannon <brett at python.org>
date:        Sun Aug 05 19:24:57 2012 -0400
summary:
  Fix a spelling mistake in a comment.

files:
  Python/import.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/import.c b/Python/import.c
--- a/Python/import.c
+++ b/Python/import.c
@@ -1243,7 +1243,7 @@
     }
     else {
         /* Only have to care what given_globals is if it will be used
-           fortsomething. */
+           for something. */
         if (level > 0 && !PyDict_Check(given_globals)) {
             PyErr_SetString(PyExc_TypeError, "globals must be a dict");
             goto error;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list