STINNER Victor added the comment: "Nope - belay that. Checking through the SWIG-generated Python code, all the classes correctly inherit from object, which negates that issue."
I don't understand your comment, on Python 3, any class inherit from object be default. There is no more old and new classes. haypo@selma$ cat y.py class A: pass class B(object): pass print(A.__bases__) print(B.__bases__) haypo@selma$ python3 y.py (<class 'object'>,) (<class 'object'>,) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29758> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com