[Python-checkins] r87991 - python/branches/py3k/Modules/main.c
eli.bendersky
python-checkins at python.org
Fri Jan 14 08:31:14 CET 2011
Author: eli.bendersky
Date: Fri Jan 14 08:31:14 2011
New Revision: 87991
Log:
Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844
Modified:
python/branches/py3k/Modules/main.c
Modified: python/branches/py3k/Modules/main.c
==============================================================================
--- python/branches/py3k/Modules/main.c (original)
+++ python/branches/py3k/Modules/main.c Fri Jan 14 08:31:14 2011
@@ -720,7 +720,6 @@
* trade off slower shutdown for less distraction in the memory
* reports. -baw
*/
- _Py_ReleaseInternedStrings();
_Py_ReleaseInternedUnicodeStrings();
#endif /* __INSURE__ */
More information about the Python-checkins
mailing list