[issue32423] The Windows SDK version 10.0.15063.0 was not found

2018-02-02 Thread William Woodall
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

[issue23548] TypeError in event loop finalizer, new in Python 3.4.3

2018-06-19 Thread William Woodall
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

[issue23548] TypeError in event loop finalizer, new in Python 3.4.3

2015-04-07 Thread William Woodall
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