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 Egon.Smiwa
Recipients Egon.Smiwa, georg.brandl, loewis
Date 2011-02-16.20:58:07
SpamBayes Score 0.00012378448
Marked as misclassified No
Message-id <1297889887.88.0.949282415141.issue11135@psf.upfronthosting.co.za>
In-reply-to
Content
Hello, I'm just a app developer which is embedding the python32.dll
and I assumed (and wished) python would simply copy my allocated parameter-string into the type object (( spec->name) is copied too). I looked in the source and see this ownership confirmed:

static void 
type_dealloc(PyTypeObject *type)
.... PyObject_Free((char *)type->tp_doc);

The typeobject owns tp_doc and even requires a special allocation (pyobject_malloc), which is no problem if the type creates its own copy; the hosting app is not connected.
History
Date User Action Args
2011-02-16 20:58:07Egon.Smiwasetrecipients: + Egon.Smiwa, loewis, georg.brandl
2011-02-16 20:58:07Egon.Smiwasetmessageid: <1297889887.88.0.949282415141.issue11135@psf.upfronthosting.co.za>
2011-02-16 20:58:07Egon.Smiwalinkissue11135 messages
2011-02-16 20:58:07Egon.Smiwacreate