From: Raymond Hettinger Date: Sun, 19 Jan 2003 02:37:41 +0000 (+0000) Subject: SF bug #668906: class browser raises AttributeError X-Git-Tag: v2.3c1~2410 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6550051691d604c728ed56e4acf90dc6535981f9;p=python SF bug #668906: class browser raises AttributeError The Py2.3 updates to the pyclbr module return both Class and Function objects. The IDLE ClassBrowser module only knew about Class and could not handle objects which did not define "super". Fixed by adding a guard. --- diff --git a/Lib/idlelib/ClassBrowser.py b/Lib/idlelib/ClassBrowser.py index 338836a9fa..240394b68f 100644 --- a/Lib/idlelib/ClassBrowser.py +++ b/Lib/idlelib/ClassBrowser.py @@ -98,7 +98,7 @@ class ModuleBrowserTreeItem(TreeItem): for key, cl in dict.items(): if cl.module == name: s = key - if cl.super: + if hasattr(cl, 'super') and cl.super: supers = [] for sup in cl.super: if type(sup) is type(''):