
python-checkins at python
Jul 19, 2012, 7:33 PM
Post #1 of 1
(36 views)
Permalink
|
|
cpython: Issue #15401: Fix typo in inspect.getclosurevars docstring.
|
|
http://hg.python.org/cpython/rev/abc26b51fbfc changeset: 78186:abc26b51fbfc user: Meador Inge <meadori [at] gmail> date: Thu Jul 19 21:33:21 2012 -0500 summary: Issue #15401: Fix typo in inspect.getclosurevars docstring. files: Lib/inspect.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -1050,7 +1050,7 @@ """ Get the mapping of free variables to their current values. - Returns a named tuple of dics mapping the current nonlocal, global + Returns a named tuple of dicts mapping the current nonlocal, global and builtin references as seen by the body of the function. A final set of unbound names that could not be resolved is also provided. """ -- Repository URL: http://hg.python.org/cpython
|