diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 01:52:00 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 01:52:00 (GMT) |
commit | 8568752268bf721228ca989a2b572d4e3bf6275a (patch) | |
tree | 822188329be75be5859e06fb7ea9aba9d3bc3bbd /Python/bltinmodule.c | |
parent | cbdd350dd7e393933437d5c12eabe8e47b6a40d9 (diff) | |
download | cpython-8568752268bf721228ca989a2b572d4e3bf6275a.zip cpython-8568752268bf721228ca989a2b572d4e3bf6275a.tar.gz cpython-8568752268bf721228ca989a2b572d4e3bf6275a.tar.bz2 |
Fix SF #1552093, eval docstring typo (3 ps in mapping)
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 2 |
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"); |