From: Brett Cannon Date: Sun, 5 Aug 2012 23:24:57 +0000 (-0400) Subject: Fix a spelling mistake in a comment. X-Git-Tag: v3.3.0b2~27 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ecfefb7956c7f7ac63d6ac653e22abe55eac9b60;p=thirdparty%2FPython%2Fcpython.git Fix a spelling mistake in a comment. --- diff --git a/Python/import.c b/Python/import.c index 6f4b6d0638a2..2540f9d7b798 100644 --- a/Python/import.c +++ b/Python/import.c @@ -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;