[pypy-svn] r73516 - pypy/branch/decouple-host-opcodes/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Wed Apr 7 19:25:03 CEST 2010


Author: fijal
Date: Wed Apr  7 19:25:01 2010
New Revision: 73516

Modified:
   pypy/branch/decouple-host-opcodes/pypy/interpreter/pycode.py
Log:
A good reason - we can't mix frozen pbcs with instances


Modified: pypy/branch/decouple-host-opcodes/pypy/interpreter/pycode.py
==============================================================================
--- pypy/branch/decouple-host-opcodes/pypy/interpreter/pycode.py	(original)
+++ pypy/branch/decouple-host-opcodes/pypy/interpreter/pycode.py	Wed Apr  7 19:25:01 2010
@@ -120,7 +120,6 @@
     def _freeze_(self):
         if self.magic == cpython_magic:
             raise Exception("CPython host codes should not be rendered")
-        # XXX since PyCode is an immutable object, why not return True?
         return False
 
     def _init_flags(self):



More information about the Pypy-commit mailing list