This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author josh.r
Recipients josh.r
Date 2016-11-16.00:14:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479255247.66.0.561361194061.issue28709@psf.upfronthosting.co.za>
In-reply-to
Content
Note: Uncommenting the line that forces Py_TPFLAGS_HEAPTYPE isn't enough, since it looks like the PyHeapTypeObject fields aren't initialized properly, causing seg faults if you access, for example, __name__/__qualname__ (or print the type's repr, which implicitly accesses same):

    python -c "import testnewtype; Foo = testnewtype.makeseq('Foo', ['x', 'y']); print(Foo.__name__)"

The type behaves properly otherwise (you can make instances, access values on them), but crashing on repr is probably poor form. :-)
History
Date User Action Args
2016-11-16 00:14:07josh.rsetrecipients: + josh.r
2016-11-16 00:14:07josh.rsetmessageid: <1479255247.66.0.561361194061.issue28709@psf.upfronthosting.co.za>
2016-11-16 00:14:07josh.rlinkissue28709 messages
2016-11-16 00:14:07josh.rcreate