]> granicus.if.org Git - python/commitdiff
Fix typo (reported by terlop on IRC)
authorMark Dickinson <dickinsm@gmail.com>
Sat, 19 Dec 2009 21:19:35 +0000 (21:19 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 19 Dec 2009 21:19:35 +0000 (21:19 +0000)
Python/bltinmodule.c

index 5710c0724c0d14519efbeab3e3341297eddda615..7fe164f5deeeba4fe7b493d07939b5ad191146fe 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.");