fixed introspection of objects with attrs without string names.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -55,6 +55,10 @@ def getAttributeNames(object, includeMagic=1, includeSingle=1,
|
|||||||
for item in attributes:
|
for item in attributes:
|
||||||
dict[item] = None
|
dict[item] = None
|
||||||
attributes = dict.keys()
|
attributes = dict.keys()
|
||||||
|
# new-style swig wrappings can result in non-string attributes
|
||||||
|
# e.g. ITK http://www.itk.org/
|
||||||
|
attributes = [attribute for attribute in attributes \
|
||||||
|
if type(attribute) == str]
|
||||||
attributes.sort(lambda x, y: cmp(x.upper(), y.upper()))
|
attributes.sort(lambda x, y: cmp(x.upper(), y.upper()))
|
||||||
if not includeSingle:
|
if not includeSingle:
|
||||||
attributes = filter(lambda item: item[0]!='_' \
|
attributes = filter(lambda item: item[0]!='_' \
|
||||||
|
Reference in New Issue
Block a user