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 loewis
Recipients daniel.urban, loewis, ncoghlan, pitrou
Date 2012-06-23.07:32:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20120623093223.Horde.2m5GGVNNcXdP5XEH3w-21KA@webmail.df.eu>
In-reply-to <1340431215.31.0.910582474537.issue15142@psf.upfronthosting.co.za>
Content
> - ensuring __new__ is a static method

This shouldn't be necessary. __new__ won't be a method at all,
and not even exist. Instead, a type may or may not fill the tp_new
slot.

> - ensuring the standard attribute lookup machinery is configured

This is what PyType_Ready does, no?

> - hooking up tp_as_number, tp_as_mapping, etc

This is indeed missing. Robin Schreiber is working on a patch.

> - ensuring GC support is configured correctly

This is the responsibility of the caller, as always with C types.
History
Date User Action Args
2012-06-23 07:32:36loewissetrecipients: + loewis, ncoghlan, pitrou, daniel.urban
2012-06-23 07:32:34loewislinkissue15142 messages
2012-06-23 07:32:29loewiscreate