Jeroen Demeyer added the comment:

@serhiy.storchaka: yes, changing the order of the base classes fixes the issue 
with __new__. Also manually assigning __new__ works, like

class C(A, B):
    __new__ = B.__new__

What is broken by this patch is only the auto-detection of which __new__ 
(really, which tp_new) should be called.

@doko: not "another regression", it's exactly the one that we are talking about.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue5322>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to