From 8fda35909556c24f958b6418286a1d8f9f9a5717 Mon Sep 17 00:00:00 2001 From: Meador Inge Date: Thu, 19 Jul 2012 21:33:21 -0500 Subject: Issue #15401: Fix typo in inspect.getclosurevars docstring. --- Lib/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/inspect.py b/Lib/inspect.py index 40e4454..88f0ee2 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -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. """ -- cgit v0.12