Issue #23184: idlelib, remove more unused names and imports.

This commit is contained in:
Terry Jan Reedy 2015-05-15 23:03:17 -04:00
parent 2733618fd9
commit 038c16b9a0
6 changed files with 10 additions and 20 deletions

View file

@ -98,7 +98,7 @@ class IdbAdapter:
else:
tb = tracebacktable[tbid]
stack, i = self.idb.get_stack(frame, tb)
stack = [(wrap_frame(frame), k) for frame, k in stack]
stack = [(wrap_frame(frame2), k) for frame2, k in stack]
return stack, i
def run(self, cmd):