Author: Carl Friedrich Bolz <cfb...@gmx.de>
Branch: cells-local-stack
Changeset: r77228:8f473b742931
Date: 2015-05-08 18:27 +0200
http://bitbucket.org/pypy/pypy/changeset/8f473b742931/

Log:    cells field is no longer needed

diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -69,10 +69,9 @@
 
     w_globals = None
     pycode = None # code object executed by that frame
-    locals_stack_w = None # the list of all locals and valuestack
+    locals_cells_stack_w = None # the list of all locals, cells and the 
valuestack
     valuestackdepth = 0 # number of items on valuestack
     lastblock = None
-    cells = None # cells
 
     # other fields:
     
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to