From 9c9f085e9a1d1464376ea421e5c96472ca11c3b4 Mon Sep 17 00:00:00 2001 From: Yonatan Goldschmidt Date: Sun, 27 Nov 2022 12:39:23 +0200 Subject: [PATCH] Remove unused local variables in inspect.py (#24218) --- Lib/inspect.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/inspect.py b/Lib/inspect.py index d0015aa2020..311a3f7e04b 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -656,7 +656,7 @@ def classify_class_attrs(cls): if name == '__dict__': raise Exception("__dict__ is special, don't want the proxy") get_obj = getattr(cls, name) - except Exception as exc: + except Exception: pass else: homecls = getattr(get_obj, "__objclass__", homecls) @@ -1310,7 +1310,6 @@ def getargs(co): nkwargs = co.co_kwonlyargcount args = list(names[:nargs]) kwonlyargs = list(names[nargs:nargs+nkwargs]) - step = 0 nargs += nkwargs varargs = None