[Python-checkins] r51712 - python/branches/release25-maint/Python/bltinmodule.c

neal.norwitz python-checkins at python.org
Tue Sep 5 03:52:01 CEST 2006


Author: neal.norwitz
Date: Tue Sep  5 03:52:00 2006
New Revision: 51712

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

Modified: python/branches/release25-maint/Python/bltinmodule.c
==============================================================================
--- python/branches/release25-maint/Python/bltinmodule.c	(original)
+++ python/branches/release25-maint/Python/bltinmodule.c	Tue Sep  5 03:52:00 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