From ecfefb7956c7f7ac63d6ac653e22abe55eac9b60 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 5 Aug 2012 19:24:57 -0400 Subject: Fix a spelling mistake in a comment. --- Python/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/import.c b/Python/import.c index 6f4b6d0..2540f9d 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; -- cgit v0.12