summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-05 02:25:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-05 02:25:41 (GMT)
commit477ca1c953ae778fc71378318daed790b0ac9ac5 (patch)
treea1bd40df164d1e504ec65e37209634911e62c0cb /Python
parenta22975fb35e1bae0f85fc6ede1572264a7bcd1e6 (diff)
downloadcpython-477ca1c953ae778fc71378318daed790b0ac9ac5.zip
cpython-477ca1c953ae778fc71378318daed790b0ac9ac5.tar.gz
cpython-477ca1c953ae778fc71378318daed790b0ac9ac5.tar.bz2
Fix SF #1552093, eval docstring typo (3 ps in mapping)
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 5bae619..ceb2fc7 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -607,7 +607,7 @@ PyDoc_STRVAR(eval_doc,
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");