Commit 942b9c96 authored by Michel Pelletier's avatar Michel Pelletier

fixed recursive bug (thought I fixed this one.. hmm)

parent 24dd8086
......@@ -17,7 +17,7 @@ def _ii(klass, items):
if k[:1]=='_' and not (k[:2]=='__' and k[-2:]=='__'):
continue
items[k]=v
for b in klass.__bases__: _ii(b)
for b in klass.__bases__: _ii(b, items)
return items
def implementedBy(object):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment