Author: Maciej Fijalkowski <[email protected]>
Branch: kill-someobject
Changeset: r58065:9e6d6547fc22
Date: 2012-10-12 17:25 +0200
http://bitbucket.org/pypy/pypy/changeset/9e6d6547fc22/

Log:    fix

diff --git a/pypy/interpreter/pycode.py b/pypy/interpreter/pycode.py
--- a/pypy/interpreter/pycode.py
+++ b/pypy/interpreter/pycode.py
@@ -125,11 +125,10 @@
             from pypy.objspace.std.mapdict import init_mapdict_cache
             init_mapdict_cache(self)
 
-    def _freeze_(self):
+    def _cleanup_(self):
         if (self.magic == cpython_magic and
             '__pypy__' not in sys.builtin_module_names):
             raise Exception("CPython host codes should not be rendered")
-        return False
 
     def _init_flags(self):
         co_code = self.co_code
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to