[issue15729] PyStructSequence_NewType enhancement

2019-09-15 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: All enhancements specified in this issue have since been done. PyStructSequence_NewType() calls PyType_FromSpecWithBases() which sets the needed flags and even the qualname: PyObject * PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases) { PyHe

[issue15729] PyStructSequence_NewType enhancement

2016-12-19 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue15729] PyStructSequence_NewType enhancement

2016-12-19 Thread elemental
Changes by elemental : -- nosy: +elemental ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue15729] PyStructSequence_NewType enhancement

2014-11-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue20066. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailin

[issue15729] PyStructSequence_NewType enhancement

2014-10-05 Thread Mark Lawrence
Mark Lawrence added the comment: I'm uncertain as to whether or not the patch can be considered stand alone, or whether the pep3121 keyword is also relevant here. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.4 ___ Python tracker

[issue15729] PyStructSequence_NewType enhancement

2013-06-25 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue15729] PyStructSequence_NewType enhancement

2012-11-08 Thread Robin Schreiber
Changes by Robin Schreiber : -- keywords: +pep3121 -patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue15729] PyStructSequence_NewType enhancement

2012-08-19 Thread Robin Schreiber
New submission from Robin Schreiber: To create a HeapType from Structseq description, there is the helpful, yet undocumented PyStructSequence_NewType Method, which can do just that. Until now, this method solely allocates some generic TypeObject on which it then performs PyStructSequence_InitTy