summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index d0015aa..311a3f7 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