[issue2319] abc.py:ABCMeta.__instancecheck__ broken for old style classes

2008-03-17 Thread Jeffrey Yasskin
Jeffrey Yasskin <[EMAIL PROTECTED]> added the comment: Missed this. It's now fixed by r61438. -- nosy: +jyasskin status: open -> closed type: crash -> behavior __ Tracker <[EMAIL PROTECTED]> _

[issue2319] abc.py:ABCMeta.__instancecheck__ broken for old style classes

2008-03-17 Thread Ralf Schmitt
Ralf Schmitt <[EMAIL PROTECTED]> added the comment: I used svn revision 61433. __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsub

[issue2319] abc.py:ABCMeta.__instancecheck__ broken for old style classes

2008-03-17 Thread Ralf Schmitt
New submission from Ralf Schmitt <[EMAIL PROTECTED]>: The following short program raises an exception: import UserList class C: pass print isinstance(C, UserList.UserList) - exception: Traceback (most recent call last): File "t.py", line 6, in print isinstance(C, UserLis