Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: remember-tracing-counts
Changeset: r79628:b9514a2b467d
Date: 2015-09-14 15:31 +0200
http://bitbucket.org/pypy/pypy/changeset/b9514a2b467d/

Log:    fix

diff --git a/pypy/module/pypyjit/interp_jit.py 
b/pypy/module/pypyjit/interp_jit.py
--- a/pypy/module/pypyjit/interp_jit.py
+++ b/pypy/module/pypyjit/interp_jit.py
@@ -225,8 +225,8 @@
     in_recursion = False
 
     def __init__(self, space):
-        self.w_compile_bridge = None
-        self.w_compile_loop = None
+        self.w_compile_bridge = space.w_None
+        self.w_compile_loop = space.w_None
 
 def set_compile_bridge(space, w_hook):
     cache = space.fromcache(Cache)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to