Author: Manuel Jacob <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit