From: Terry Jan Reedy Date: Thu, 27 Aug 2015 03:37:14 +0000 (-0400) Subject: Issue #24790: Restore unused function. X-Git-Tag: v3.5.1rc1~427^2~58^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2050a1061fafa1fc699da6239e307f68b229ff15;p=thirdparty%2FPython%2Fcpython.git Issue #24790: Restore unused function. --- diff --git a/Lib/idlelib/StackViewer.py b/Lib/idlelib/StackViewer.py index 36507eea684d..e62e6f5586d1 100644 --- a/Lib/idlelib/StackViewer.py +++ b/Lib/idlelib/StackViewer.py @@ -120,6 +120,9 @@ class VariablesTreeItem(ObjectTreeItem): sublist.append(item) return sublist + def keys(self): # unused, left for possible 3rd parcy use + return list(self.object.keys()) + def _stack_viewer(parent): root = tk.Tk() root.title("Test StackViewer")