summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-19 21:19:35 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-19 21:19:35 (GMT)
commit480e8e38a077280313ea66476350a06ee5d7ca5d (patch)
tree53865a51d542b6a3950d9be93ddff40860f989e8 /Python
parentd5587bc4745f9d0b1dfdf7c93947f5b197a37176 (diff)
downloadcpython-480e8e38a077280313ea66476350a06ee5d7ca5d.zip
cpython-480e8e38a077280313ea66476350a06ee5d7ca5d.tar.gz
cpython-480e8e38a077280313ea66476350a06ee5d7ca5d.tar.bz2
Fix typo (reported by terlop on IRC)
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 5710c07..7fe164f 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -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.");