[pypy-commit] pypy py3.5: Fix NameError from last commit.

mjacob pypy.commits at gmail.com
Wed May 30 19:02:29 EDT 2018


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.5
Changeset: r94714:1807915e1ede
Date: 2018-05-31 01:01 +0200
http://bitbucket.org/pypy/pypy/changeset/1807915e1ede/

Log:	Fix NameError from last commit.

diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py
--- a/pypy/interpreter/pyopcode.py
+++ b/pypy/interpreter/pyopcode.py
@@ -1447,7 +1447,7 @@
         for i in range(itemcount, 0, -1):
             w_item = frame.peekvalue(i-1)
             w_sum.extend(w_item)
-        self.popalues(itemcount)
+        frame.popvalues(itemcount)
         return w_sum
 
     @jit.unroll_safe


More information about the pypy-commit mailing list