

when i run 3 commands in Ipython, this error occured every time.
In [1]: 1+2
Out[1]: 3
In [2]: 5-3
Out[2]: 2
In [3]: 7*4
Out[3]: 28
Unhandled exception in event loop:
File "c:\users\jignesh\lib\asyncio\proactor_events.py", line 768, in _loop_self_reading
f.result() # may raise
File "c:\users\jignesh\lib\asyncio\windows_events.py", line 808, in _poll
value = callback(transferred, key, ov)
File "c:\users\jignesh\lib\asyncio\windows_events.py", line 457, in finish_recv
raise ConnectionResetError(*exc.args)
Exception [WinError 995] The I/O operation has been aborted because of either a thread exit or an application request
Press ENTER to continue...
it was happened after every 3 indications.plz give me solution of this problem.
i am using python3.8.5 & ipython 7.18.1 on windows 10.
Python


Login to add comment