From: Yonatan Goldschmidt Date: Sun, 27 Nov 2022 10:39:23 +0000 (+0200) Subject: Remove unused local variables in inspect.py (#24218) X-Git-Tag: v3.12.0a3~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c9f085e9a1d1464376ea421e5c96472ca11c3b4;p=thirdparty%2FPython%2Fcpython.git Remove unused local variables in inspect.py (#24218) --- diff --git a/Lib/inspect.py b/Lib/inspect.py index d0015aa20204..311a3f7e04b6 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