[pypy-svn] r24914 - pypy/dist/pypy/translator/c

tismer at codespeak.net tismer at codespeak.net
Thu Mar 23 22:55:00 CET 2006


Author: tismer
Date: Thu Mar 23 22:54:38 2006
New Revision: 24914

Modified:
   pypy/dist/pypy/translator/c/funcgen.py
Log:
enabled disabling old increfs, 'cause it crashes my code, only. Adding a test, now

Modified: pypy/dist/pypy/translator/c/funcgen.py
==============================================================================
--- pypy/dist/pypy/translator/c/funcgen.py	(original)
+++ pypy/dist/pypy/translator/c/funcgen.py	Thu Mar 23 22:54:38 2006
@@ -12,7 +12,7 @@
 LOCALVAR = 'l_%s'
 
 # I'm not absolutely sure, so just in case:
-NEED_OLD_EXTRA_REFS = True  # oupps seems to be
+NEED_OLD_EXTRA_REFS = False
 
 class FunctionCodeGenerator(object):
     """



More information about the Pypy-commit mailing list