Author: Armin Rigo <[email protected]>
Branch: py3.5-corowrapper
Changeset: r87194:ef22f59c45aa
Date: 2016-09-17 21:58 +0200
http://bitbucket.org/pypy/pypy/changeset/ef22f59c45aa/
Log: fix the stack depth computation
diff --git a/pypy/interpreter/astcompiler/assemble.py
b/pypy/interpreter/astcompiler/assemble.py
--- a/pypy/interpreter/astcompiler/assemble.py
+++ b/pypy/interpreter/astcompiler/assemble.py
@@ -664,8 +664,8 @@
ops.DELETE_DEREF: 0,
ops.GET_AWAITABLE: 0,
- ops.SETUP_ASYNC_WITH: 2,
- ops.BEFORE_ASYNC_WITH: -1,
+ ops.SETUP_ASYNC_WITH: 0,
+ ops.BEFORE_ASYNC_WITH: 1,
ops.GET_AITER: 0,
ops.GET_ANEXT: 1,
ops.GET_YIELD_FROM_ITER: 0,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit