[Python-checkins] r87994 - in python/branches/release31-maint: Modules/main.c

eli.bendersky python-checkins at python.org
Fri Jan 14 09:52:17 CET 2011


Author: eli.bendersky
Date: Fri Jan 14 09:52:17 2011
New Revision: 87994

Log:
Merged revisions 87991 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87991 | eli.bendersky | 2011-01-14 09:31:14 +0200 (Fri, 14 Jan 2011) | 2 lines
  
  Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Modules/main.c

Modified: python/branches/release31-maint/Modules/main.c
==============================================================================
--- python/branches/release31-maint/Modules/main.c	(original)
+++ python/branches/release31-maint/Modules/main.c	Fri Jan 14 09:52:17 2011
@@ -642,7 +642,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