Message802

Author leouserz
Recipients
Date 2006-12-21.15:11:42
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Running this source:
class z:
    class t:
        def moo(self): pass

print list(z.t.__dict__)
a = z()
print list(a.t.__dict__)

reproduces the stack in 2.1.  Importing it with the prints removed and creating a z and accessing t.__dict__ via
a = z()
list(a.z.__dict__)
recreates the stack.

But, in Jython3005 this does not occur so it appears to not be reproducible.

leouser
History
Date User Action Args
2008-02-20 17:17:12adminlinkissue654142 messages
2008-02-20 17:17:12admincreate