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 asmodai
Recipients asmodai, barry, georg.brandl, lemburg, loewis, ncoghlan
Date 2009-04-25.12:00:53
SpamBayes Score 3.1580544e-07
Marked as misclassified No
Message-id <1240660854.71.0.296327039606.issue4385@psf.upfronthosting.co.za>
In-reply-to
Content
I added initial documentation for both PyObject_HEAD_INIT and
PyVarObject_HEAD_INIT in r71874.

The text currently reads:

PyObject_HEAD_INIT(type)¶

    This is a macro which expands to initialization values for a new
PyObject type. This macro expands to:

    _PyObject_EXTRA_INIT
    1, type,

PyVarObject_HEAD_INIT(type, size)¶

    This is a macro which expands to initialization values for a new
PyVarObject type, including the ob_size field. This macro expands to:

    _PyObject_EXTRA_INIT
    1, type, size,

Of course my internals knowledge is little compared to you guys, so any
feedback to improve this is appreciated.
History
Date User Action Args
2009-04-25 12:00:54asmodaisetrecipients: + asmodai, lemburg, loewis, barry, georg.brandl, ncoghlan
2009-04-25 12:00:54asmodaisetmessageid: <1240660854.71.0.296327039606.issue4385@psf.upfronthosting.co.za>
2009-04-25 12:00:53asmodailinkissue4385 messages
2009-04-25 12:00:53asmodaicreate