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 flox
Recipients flox, jcea
Date 2010-08-25.01:03:35
SpamBayes Score 7.378614e-07
Marked as misclassified No
Message-id <1282698218.95.0.925083031887.issue9675@psf.upfronthosting.co.za>
In-reply-to
Content
The crash is triggered because PyDict_SetItemString(d, "api", py_api) is called with py_api=NULL when PyCObject_FromVoidPtr returns an error.

A possible workaround is to create a copy of PyCObject_FromVoidPtr (e.g. _PyCObject_FromVoidPtr) which is free of warnings.
This function will be used by the _bsddb module in Python 2.7.

See patch.
History
Date User Action Args
2010-08-25 01:03:38floxsetrecipients: + flox, jcea
2010-08-25 01:03:38floxsetmessageid: <1282698218.95.0.925083031887.issue9675@psf.upfronthosting.co.za>
2010-08-25 01:03:37floxlinkissue9675 messages
2010-08-25 01:03:37floxcreate