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 eli.bendersky
Recipients eli.bendersky
Date 2010-09-13.06:19:24
SpamBayes Score 2.5416439e-05
Marked as misclassified No
Message-id <1284358768.31.0.932745075936.issue9844@psf.upfronthosting.co.za>
In-reply-to
Content
The Py_Main function has a section under #ifdef __INSURE__ at the end, where it does:

    _Py_ReleaseInternedStrings();
    _Py_ReleaseInternedUnicodeStrings();

The first function doesn't exist in Python 3K, so there will be a compile error with __INSURE__ defined.
History
Date User Action Args
2010-09-13 06:19:28eli.benderskysetrecipients: + eli.bendersky
2010-09-13 06:19:28eli.benderskysetmessageid: <1284358768.31.0.932745075936.issue9844@psf.upfronthosting.co.za>
2010-09-13 06:19:25eli.benderskylinkissue9844 messages
2010-09-13 06:19:24eli.benderskycreate