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 barry, eli.bendersky, ncoghlan, terry.reedy
Date 2011-01-14.05:15:28
SpamBayes Score 7.764926e-05
Marked as misclassified No
Message-id <1294982143.89.0.925084713599.issue9844@psf.upfronthosting.co.za>
In-reply-to
Content
This code is in Modules/main.c, function Py_Main.


In 2.7, only _Py_ReleaseInternedStrings is called, and this function is defined in Objects/stringobject.c

In 3k, the two functions are called as specified above. _Py_ReleaseInternedStrings doesn't exist in 3k, and _Py_ReleaseInternedUnicodeStrings is defined in Objects/unicodeobject.c

I will now supply a patch that removes the call.
History
Date User Action Args
2011-01-14 05:15:43eli.benderskysetrecipients: + eli.bendersky, barry, terry.reedy, ncoghlan
2011-01-14 05:15:43eli.benderskysetmessageid: <1294982143.89.0.925084713599.issue9844@psf.upfronthosting.co.za>
2011-01-14 05:15:28eli.benderskylinkissue9844 messages
2011-01-14 05:15:28eli.benderskycreate