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 dalcinl
Recipients dalcinl, mark.dickinson
Date 2009-02-13.15:42:08
SpamBayes Score 0.00090676796
Marked as misclassified No
Message-id <1234539731.32.0.475254376781.issue5248@psf.upfronthosting.co.za>
In-reply-to
Content
structmember.h lacks a 'T_SIZET' define in order to properly support
struct fields of type 'size_t'  within PyMemberDef.

If this feature request is accepted, I can provide the patches. 

For 2.7, It would be nice to do:

#define T_SIZET      20      /* size_t */

However, this value is already used in 3.0 for 'T_NONE'. Perhaps T_NONE
should be backported to 2.7?

To avoid future merge conflicts, I would vote for this definition:

#define T_SIZET      21      /* size_t */
History
Date User Action Args
2009-02-13 15:42:11dalcinlsetrecipients: + dalcinl, mark.dickinson
2009-02-13 15:42:11dalcinlsetmessageid: <1234539731.32.0.475254376781.issue5248@psf.upfronthosting.co.za>
2009-02-13 15:42:10dalcinllinkissue5248 messages
2009-02-13 15:42:09dalcinlcreate