You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the bug report. This is a known issue, but I'm not sure how to solve it. I believe ipykernel suffers from the same problem — actually I see you reported it there too :)
If you have
importasyncioawaitasyncio.sleep(10)
print(1)
and interrupt the sleep, the cell doesn't actually run until complete — 1 won't be printed. But the sleep() can't be interrupted.
Describe the bug
The following code:
cannot be interrupted: the cell runs until complete and then shows a
CancelledError
.Environment
Code to reproduce
The text was updated successfully, but these errors were encountered: