[Python-checkins] r51721 - python/trunk/Python/bltinmodule.c

neal.norwitz python-checkins at python.org
Tue Sep 5 04:25:41 CEST 2006


Author: neal.norwitz
Date: Tue Sep  5 04:25:41 2006
New Revision: 51721

Modified:
   python/trunk/Python/bltinmodule.c
Log:
Fix SF #1552093, eval docstring typo (3 ps in mapping)

Modified: python/trunk/Python/bltinmodule.c
==============================================================================
--- python/trunk/Python/bltinmodule.c	(original)
+++ python/trunk/Python/bltinmodule.c	Tue Sep  5 04:25:41 2006
@@ -607,7 +607,7 @@
 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");
 


More information about the Python-checkins mailing list