[Python-checkins] r76902 - python/branches/py3k/Python/bltinmodule.c

mark.dickinson python-checkins at python.org
Sat Dec 19 22:19:36 CET 2009


Author: mark.dickinson
Date: Sat Dec 19 22:19:35 2009
New Revision: 76902

Log:
Fix typo (reported by terlop on IRC)

Modified:
   python/branches/py3k/Python/bltinmodule.c

Modified: python/branches/py3k/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k/Python/bltinmodule.c	(original)
+++ python/branches/py3k/Python/bltinmodule.c	Sat Dec 19 22:19:35 2009
@@ -804,7 +804,7 @@
 PyDoc_STRVAR(exec_doc,
 "exec(object[, globals[, locals]])\n\
 \n\
-Read and execute code from a object, which can be a string or a code\n\
+Read and execute code from an object, which can be a string or a code\n\
 object.\n\
 The globals and locals are dictionaries, defaulting to the current\n\
 globals and locals.  If only globals is given, locals defaults to it.");


More information about the Python-checkins mailing list