summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-08-05 19:24:57 -0400
committerBrett Cannon <brett@python.org>2012-08-05 19:24:57 -0400
commite95288342d0a23e79fa33ab77fdfcca20280953d (patch)
tree69b297ddc23de0960b86134f20ed46c8f7b7587b /Python/import.c
parent5ee38df22e369018d4cf51b8d9295e3911334901 (diff)
downloadcpython-e95288342d0a23e79fa33ab77fdfcca20280953d.tar.gz
Fix a spelling mistake in a comment.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 6f4b6d0638..2540f9d7b7 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;