]> granicus.if.org Git - python/commitdiff
Merged revisions 76902 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Sat, 19 Dec 2009 21:20:55 +0000 (21:20 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 19 Dec 2009 21:20:55 +0000 (21:20 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r76902 | mark.dickinson | 2009-12-19 21:19:35 +0000 (Sat, 19 Dec 2009) | 1 line

  Fix typo (reported by terlop on IRC)
........

Python/bltinmodule.c

index 7953297588bc39422ef668a698382336c9cad73c..e03b49f9f4f9df54788cc9d7862b4a7198738a40 100644 (file)
@@ -804,7 +804,7 @@ builtin_exec(PyObject *self, PyObject *args)
 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.");