Message1337

Author leouserz
Recipients
Date 2006-12-20.19:12:56
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Im trying to understand the bug here.  Ive got a test case together:
class x:
    def zoom1(self):
        print self

class z:
    pass

a = x()
a.zoom1()

t = z()
z.zoom1 = a.zoom1
t.zoom1()

and they do the same thing for me in Python as in Jython.

leouser
History
Date User Action Args
2008-02-20 17:17:37adminlinkissue1605019 messages
2008-02-20 17:17:37admincreate