]> granicus.if.org Git - python/commitdiff
Fix SF #1552093, eval docstring typo (3 ps in mapping)
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 5 Sep 2006 01:52:00 +0000 (01:52 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 5 Sep 2006 01:52:00 +0000 (01:52 +0000)
Python/bltinmodule.c

index 5bae619774e70f184cfec85424647ab951050894..ceb2fc77f42a0b15ef3051298a011ee6d4724475 100644 (file)
@@ -607,7 +607,7 @@ PyDoc_STRVAR(eval_doc,
 Evaluate the source in the context of globals and locals.\n\
 The source may be a string representing a Python expression\n\
 or a code object as returned by compile().\n\
-The globals must be a dictionary and locals can be any mappping,\n\
+The globals must be a dictionary and locals can be any mapping,\n\
 defaulting to the current globals and locals.\n\
 If only globals is given, locals defaults to it.\n");