[issue13575] old style classes still alive

2011-12-18 Thread Florent Xicluna
Florent Xicluna added the comment: > Is mro_internal's second call to type_mro_modified still needed? I was about to remove it, however I'm not enough confident on this. I have to understand how "tp_mro" and "tp_bases" interact in Python 3 (and the C extensions). -- _

[issue13575] old style classes still alive

2011-12-15 Thread Philip Jenvey
Philip Jenvey added the comment: Is mro_internal's second call to type_mro_modified still needed? Its comment makes me suspect that it's not: type_mro_modified(type, type->tp_mro); /* corner case: the old-style super class might have been hidden from the custom MRO */ type_m

[issue13575] old style classes still alive

2011-12-12 Thread Florent Xicluna
Changes by Florent Xicluna : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue13575] old style classes still alive

2011-12-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 021e5bb297d1 by Florent Xicluna in branch 'default': Issue #13575: there is only one class type. http://hg.python.org/cpython/rev/021e5bb297d1 -- nosy: +python-dev ___ Python tracker

[issue13575] old style classes still alive

2011-12-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: +1. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue13575] old style classes still alive

2011-12-10 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Changes look good. -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue13575] old style classes still alive

2011-12-10 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- priority: low -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue13575] old style classes still alive

2011-12-10 Thread Florent Xicluna
Florent Xicluna added the comment: Off course the leftovers are mainly in comments and documentation. See also issue #13574. -- ___ Python tracker ___ _

[issue13575] old style classes still alive

2011-12-10 Thread Florent Xicluna
New submission from Florent Xicluna : there are still some leftovers of Python 2 old-style classes. See attached patch. -- components: Interpreter Core, Library (Lib) files: oldstyle_leftovers.diff keywords: patch messages: 149188 nosy: flox priority: low severity: normal stage: patch r