
python-checkins at python
Aug 5, 2012, 4:53 PM
Post #1 of 1
(33 views)
Permalink
|
|
cpython: Fix a spelling mistake in a comment.
|
|
http://hg.python.org/cpython/rev/9066dca1a9b3 changeset: 78448:9066dca1a9b3 user: Brett Cannon <brett [at] python> 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
|