From: Terry Jan Reedy Date: Thu, 27 Aug 2015 17:02:11 +0000 (-0400) Subject: Issue #24790: correct typo noticed by Eric Smith X-Git-Tag: v3.5.1rc1~427^2~57^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e9296702acc4983cbe9258bab06652351d143f3;p=python Issue #24790: correct typo noticed by Eric Smith --- diff --git a/Lib/idlelib/StackViewer.py b/Lib/idlelib/StackViewer.py index e62e6f5586..ccc755ce31 100644 --- a/Lib/idlelib/StackViewer.py +++ b/Lib/idlelib/StackViewer.py @@ -120,7 +120,7 @@ class VariablesTreeItem(ObjectTreeItem): sublist.append(item) return sublist - def keys(self): # unused, left for possible 3rd parcy use + def keys(self): # unused, left for possible 3rd party use return list(self.object.keys()) def _stack_viewer(parent):