-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect traceback when future's exception is raised multiple times #90082
Comments
Background: ###################################################### import asyncio, traceback
async def raise_after(fut, delay):
await asyncio.sleep(delay)
fut.set_exception(TypeError(42))
async def main():
loop = asyncio.get_running_loop()
fut = loop.create_future()
loop.create_task(
raise_after(fut, 1))
print('hello ...')
for i in range(3):
try:
print(await fut)
except Exception as e:
traceback.print_exception(e)
asyncio.run(main())
###################################################### Output (traceback accumulates a frame each time): hello ...
Traceback (most recent call last):
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
TypeError: 42
Traceback (most recent call last):
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
TypeError: 42
Traceback (most recent call last):
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
File "/Users/iritkatriel/src/cpython-1/as.py", line 17, in main
print(await fut)
^^^^^^^^^
TypeError: 42 |
There's a similar issue with concurrent.futures.Future, and really, anything that stores exceptions and later raises them can get in trouble if there's a way to get the exception raised multiple times. This is rarely noticed because usually the exception isn't raised more than once. We need separate bpo issues for the other cases. The fix is easy enough (separately store a traceback and raise using e.with_traceback(tb)) so I'm marking this as an easy issue. |
hey Irit, Is this issue platform-dependent? I am on ubuntu 20.04, and running python 3.10. I am not getting the same error that you have mentioned below. hello ...
Traceback (most recent call last):
File "error.py", line 17, in main
print(await fut)
TypeError: 42
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "error.py", line 21, in <module>
asyncio.run(main())
File "/usr/lib/python3.8/asyncio/runners.py", line 44, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.8/asyncio/base_events.py", line 616, in run_until_complete
return future.result()
File "error.py", line 19, in main
traceback.print_exception(e)
TypeError: print_exception() missing 2 required positional arguments: 'value' and 'tb' ########################################################### hello ... Can you please help me with this issue? |
Vishal, your output shows you’re running 3.8, not 3.10. traceback.print_exception() used to require 3 parameters, now it can make do with just one. See the docs for the details. |
thanks, It was my mistake, bug reproduced. |
Closed bpo-46954 as a duplicate of this. |
Closed bpo-42682 as duplicate of this. |
Fixed by #30274 |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: