Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Ignore None signature
  • Loading branch information
sbrunner authored and m-kuhn committed Mar 22, 2016
1 parent aa68834 commit 3b4a250
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/src/python/utilities.py
Expand Up @@ -453,6 +453,9 @@ def parseClassElem(self, e):
bindable_members = []
# loop through all members
for m in e.getiterator('memberdef'):
signature = self.memberSignature(m)
if signature is None:
continue
if self.elemIsBindableMember(m):
bindable_member = [e.find('compoundname').text, m.find('name').text]
if bindable_member not in bindable_members:
Expand All @@ -462,7 +465,7 @@ def parseClassElem(self, e):
if self.memberIsDocumented(m):
documented_members += 1
else:
undocumented_members.add(self.memberSignature(m))
undocumented_members.add(signature)
return documentable_members, documented_members, undocumented_members, bindable_members

def memberSignature(self, elem):
Expand Down

0 comments on commit 3b4a250

Please sign in to comment.