Message 358208 - Python tracker
It looks like the following code will reproduce the issue:
```
import asyncio
import threading
loop = asyncio.get_event_loop()
while True:
def test():
loop.call_soon_threadsafe(loop.stop)
threading.Thread(target=test).start()
loop.run_forever()
```
Leave it running on Windows, in Python 3.8 for a few seconds, then it starts spawning `ConnectionResetError`s.