]> granicus.if.org Git - python/commitdiff
Issue #15401: Fix typo in inspect.getclosurevars docstring.
authorMeador Inge <meadori@gmail.com>
Fri, 20 Jul 2012 02:33:21 +0000 (21:33 -0500)
committerMeador Inge <meadori@gmail.com>
Fri, 20 Jul 2012 02:33:21 +0000 (21:33 -0500)
Lib/inspect.py

index 40e44548f2386cea4016262ab958153942843b47..88f0ee2fc111c7a1b02f80a38a49f99f93e67015 100644 (file)
@@ -1050,7 +1050,7 @@ def getclosurevars(func):
     """
     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.
     """