William Woodall added the comment:
I can confirm this bug using both VS 2015 and VS 2017 on Windows 10.
The patch provided by isuruf works for me too.
--
nosy: +wjwwood
___
Python tracker
<https://bugs.python.org/issue32
William Woodall added the comment:
Just an update to my previous post. We ran into this issue again, but only
noticed later because we do not see this problem on Ubuntu Bionic with Python
3.6.5, but we did see it again when we tested later on Ubuntu Xenial with
Python 3.5.1.
See: https
William Woodall added the comment:
I was getting the same error as the OP in my application.
I did something like this to work around the problem:
import asyncio
import atexit
def close_asyncio_loop():
loop = None
try:
loop = asyncio.get_event_loop()
except AttributeError