https://github.com/python/cpython/commit/9c9f085e9a1d1464376ea421e5c96472ca11c3b4 commit: 9c9f085e9a1d1464376ea421e5c96472ca11c3b4 branch: main author: Yonatan Goldschmidt <yon.goldschmidt at gmail.com> committer: kumaraditya303 <59607654+kumaraditya303 at users.noreply.github.com> date: 2022年11月27日T16:09:23+05:30 summary: Remove unused local variables in inspect.py (#24218) files: M Lib/inspect.py 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