]> granicus.if.org Git - python/commitdiff
Fix a spelling mistake in a comment.
authorBrett Cannon <brett@python.org>
Sun, 5 Aug 2012 23:24:57 +0000 (19:24 -0400)
committerBrett Cannon <brett@python.org>
Sun, 5 Aug 2012 23:24:57 +0000 (19:24 -0400)
Python/import.c

index 6f4b6d0638a2467b44f6a505345621975673256a..2540f9d7b79804bb2201045b05ab7ce1367e03f0 100644 (file)
@@ -1243,7 +1243,7 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals,
     }
     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;