[Python-checkins] cpython: Issue #15401: Fix typo in inspect.getclosurevars docstring.

meador.inge python-checkins at python.org
Fri Jul 20 04:33:57 CEST 2012


http://hg.python.org/cpython/rev/abc26b51fbfc
changeset:   78186:abc26b51fbfc
user:        Meador Inge <meadori at gmail.com>
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


More information about the Python-checkins mailing list