Author: Armin Rigo <ar...@tunes.org>
Branch: value-profiling
Changeset: r78921:bdc51d0e73ec
Date: 2015-08-11 17:18 +0100
http://bitbucket.org/pypy/pypy/changeset/bdc51d0e73ec/

Log:    pom pom pom

diff --git a/pypy/module/_continuation/interp_continuation.py 
b/pypy/module/_continuation/interp_continuation.py
--- a/pypy/module/_continuation/interp_continuation.py
+++ b/pypy/module/_continuation/interp_continuation.py
@@ -35,10 +35,10 @@
         w_args, w_kwds = __args__.topacked()
         bottomframe = space.createframe(get_entrypoint_pycode(space),
                                         get_w_module_dict(space), None)
-        bottomframe.locals_cells_stack_w[0] = space.wrap(self)
-        bottomframe.locals_cells_stack_w[1] = w_callable
-        bottomframe.locals_cells_stack_w[2] = w_args
-        bottomframe.locals_cells_stack_w[3] = w_kwds
+        bottomframe._setlocal(0, space.wrap(self))
+        bottomframe._setlocal(1, w_callable)
+        bottomframe._setlocal(2, w_args)
+        bottomframe._setlocal(3, w_kwds)
         bottomframe.last_exception = get_cleared_operation_error(space)
         self.bottomframe = bottomframe
         #
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to