[pypy-commit] pypy faster-nested-scopes: make PyFrame.cells a virtualizable array
cfbolz
noreply at buildbot.pypy.org
Sat Jul 16 00:12:58 CEST 2011
Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: faster-nested-scopes
Changeset: r45651:57b614c62cdc
Date: 2011-07-15 19:34 +0200
http://bitbucket.org/pypy/pypy/changeset/57b614c62cdc/
Log: make PyFrame.cells a virtualizable array
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
@@ -22,6 +22,7 @@
PyFrame._virtualizable2_ = ['last_instr', 'pycode',
'valuestackdepth', 'locals_stack_w[*]',
+ 'cells[*]',
'last_exception',
'lastblock',
'is_being_profiled',
More information about the pypy-commit
mailing list