From: Terry Jan Reedy Date: Thu, 27 Aug 2015 17:01:45 +0000 (-0400) Subject: Issue #24790: correct typo noticed by Eric Smith X-Git-Tag: v2.7.11rc1~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=34eab0785bee18498a5489e8748d25ddf5b6181d;p=thirdparty%2FPython%2Fcpython.git Issue #24790: correct typo noticed by Eric Smith --- diff --git a/Lib/idlelib/StackViewer.py b/Lib/idlelib/StackViewer.py index 4752bfc6df27..555a08c2c001 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 self.object.keys() def _stack_viewer(parent): # htest #