diff options
| author | Damien George <damien.p.george@gmail.com> | 2016-09-28 11:52:13 +1000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2016-09-28 11:52:13 +1000 |
| commit | b32c01b7489f233ae7b1c211a8b93e23149fb0f3 (patch) | |
| tree | 23a03c04dd038925e6c5990e437ad1689e08d0df /tests/basics/async_with.py.exp | |
| parent | 443cc0114d7669471e39661c97e2bad91c8eabb8 (diff) | |
py/compile: Fix async-for/async-with to work with simpler exc on stack.
There is now just the exception instance on the stack when an exception is
raised, not the full (type, exc, traceback).
Diffstat (limited to 'tests/basics/async_with.py.exp')
| -rw-r--r-- | tests/basics/async_with.py.exp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/basics/async_with.py.exp b/tests/basics/async_with.py.exp index 1e9176af7..6072a3e0b 100644 --- a/tests/basics/async_with.py.exp +++ b/tests/basics/async_with.py.exp @@ -1,4 +1,7 @@ enter body -exit +exit None None finished +enter +exit <class 'ValueError'> error +ValueError |
