diff options
Diffstat (limited to 'tests/basics/async_with2.py')
-rw-r--r-- | tests/basics/async_with2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/async_with2.py b/tests/basics/async_with2.py index 0ebec489fe..44421ae917 100644 --- a/tests/basics/async_with2.py +++ b/tests/basics/async_with2.py @@ -20,7 +20,7 @@ class AContext: print('enter') print('f returned:', await f(10)) async def __aexit__(self, exc_type, exc, tb): - print('exit') + print('exit', exc_type, exc) print('f returned:', await f(20)) async def coro(): |