diff options
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index b5e9ff2..45db8ee 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -690,7 +690,6 @@ def _getfullargs(co): if not iscode(co): raise TypeError('arg is not a code object') - code = co.co_code nargs = co.co_argcount names = co.co_varnames nkwargs = co.co_kwonlyargcount |