[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, 33737210c906 seems to have fixed it. -- stage: -> committed/rejected ___ Python tracker ___ __

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: I have no clue what might have caused this. My guess is that there is a refcounting bug *somewhere*. -- ___ Python tracker ___ __

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: There was a crash here: http://www.python.org/dev/buildbot/all/builders/x86%20OpenIndiana%203.x/builds/4014/steps/test/logs/stdio -- nosy: +pitrou ___ Python tracker _

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: Thanks for the patch. Committed with slight modifications: if the spec contained a tp_base/tp_bases pointer, that needed to be considered. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset bb6df3781edb by Martin v. Löwis in branch 'default': Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. http://hg.python.org/cpython/rev/bb6df3781edb -- nosy: +python-dev ___ Python tr

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-23 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-22 Thread Robin Schreiber
Changes by Robin Schreiber : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue15146] Implemented PyType_FromSpecWithBases

2012-06-22 Thread Robin Schreiber
New submission from Robin Schreiber : Enhancement to the currently existing PyType_FromSpec() which creates and returns a heap type from a given spec. PyType_FromSpecWithBases() works similar to PyType_FromSpec(), however it sets the bases of the newly created heap type to the types contained