[Python-checkins] r46452 - python/branches/sreifschneider-newnewexcept/Objects/exceptions.c

tim.peters python-checkins at python.org
Sat May 27 13:54:45 CEST 2006


Author: tim.peters
Date: Sat May 27 13:54:45 2006
New Revision: 46452

Modified:
   python/branches/sreifschneider-newnewexcept/Objects/exceptions.c
Log:
Shouldn't decref the module dict.


Modified: python/branches/sreifschneider-newnewexcept/Objects/exceptions.c
==============================================================================
--- python/branches/sreifschneider-newnewexcept/Objects/exceptions.c	(original)
+++ python/branches/sreifschneider-newnewexcept/Objects/exceptions.c	Sat May 27 13:54:45 2006
@@ -2120,7 +2120,6 @@
     if (!PyExc_MemoryErrorInst)
         Py_FatalError("Cannot pre-allocate MemoryError instance\n");
 
-    Py_DECREF(bdict);
     Py_DECREF(bltinmod);
 }
 


More information about the Python-checkins mailing list