Author: Carl Friedrich Bolz <[email protected]>
Branch: global-cell-cache
Changeset: r82784:b51b594a5d13
Date: 2016-03-05 13:32 +0100
http://bitbucket.org/pypy/pypy/changeset/b51b594a5d13/

Log:    another one

diff --git a/pypy/objspace/std/celldict.py b/pypy/objspace/std/celldict.py
--- a/pypy/objspace/std/celldict.py
+++ b/pypy/objspace/std/celldict.py
@@ -244,7 +244,7 @@
 
 def STORE_GLOBAL_celldict(space, frame, nameindex, w_value):
     pycode = frame.getcode()
-    w_globals = frame.w_globals
+    w_globals = frame.get_w_globals()
     entry = pycode._celldict_cache[nameindex]
     cell = _finditem_with_cache(space, frame, nameindex, pycode, w_globals,
                                 entry.version, entry.value)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to