Commit 50074730 authored by Neal Norwitz's avatar Neal Norwitz

Fix SF #1552093, eval docstring typo (3 ps in mapping)

parent 5afdc5df
...@@ -607,7 +607,7 @@ PyDoc_STRVAR(eval_doc, ...@@ -607,7 +607,7 @@ PyDoc_STRVAR(eval_doc,
Evaluate the source in the context of globals and locals.\n\ Evaluate the source in the context of globals and locals.\n\
The source may be a string representing a Python expression\n\ The source may be a string representing a Python expression\n\
or a code object as returned by compile().\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\ defaulting to the current globals and locals.\n\
If only globals is given, locals defaults to it.\n"); If only globals is given, locals defaults to it.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment