[pypy-svn] r77908 - pypy/branch/32ptr-on-64bit/pypy/objspace/std

arigo at codespeak.net arigo at codespeak.net
Thu Oct 14 11:57:09 CEST 2010


Author: arigo
Date: Thu Oct 14 11:57:07 2010
New Revision: 77908

Modified:
   pypy/branch/32ptr-on-64bit/pypy/objspace/std/mapdict.py
Log:
Flow graph fix.


Modified: pypy/branch/32ptr-on-64bit/pypy/objspace/std/mapdict.py
==============================================================================
--- pypy/branch/32ptr-on-64bit/pypy/objspace/std/mapdict.py	(original)
+++ pypy/branch/32ptr-on-64bit/pypy/objspace/std/mapdict.py	Thu Oct 14 11:57:07 2010
@@ -433,6 +433,7 @@
         erase = rerased.erase
         unerase = rerased.unerase
     else:
+        rerased = None    # don't use in that case
         erase = lambda x: x
         unerase = lambda x, t: x
     #



More information about the Pypy-commit mailing list