diff options
Diffstat (limited to 'Lib/code.py')
-rw-r--r-- | Lib/code.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/code.py b/Lib/code.py index 9d124563f72..0c2fd2963b2 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -25,10 +25,10 @@ class InteractiveInterpreter: def __init__(self, locals=None): """Constructor. - The optional 'locals' argument specifies the dictionary in - which code will be executed; it defaults to a newly created - dictionary with key "__name__" set to "__console__" and key - "__doc__" set to None. + The optional 'locals' argument specifies a mapping to use as the + namespace in which code will be executed; it defaults to a newly + created dictionary with key "__name__" set to "__console__" and + key "__doc__" set to None. """ if locals is None: |