[issue32423] The Windows SDK version 10.0.15063.0 was not found
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/issue32423> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue23548] TypeError in event loop finalizer, new in Python 3.4.3
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://github.com/ros2/launch/issues/84 So this seems to be fixed in later versions, unless it's just hidden now within the asyncio debug log messages (though I didn't see anything there either, at a glance). -- ___ Python tracker <https://bugs.python.org/issue23548> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue23548] TypeError in event loop finalizer, new in Python 3.4.3
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: pass if loop is not None: loop.close() atexit.register(close_asyncio_loop) Is this an appropriate work around? Why is it up to the application to close the loop explicitly? Put another way, in what scenario would I want to close the loop outside of the application shutting down since it is irreversible? Thanks in advance for your time. -- nosy: +wjwwood ___ Python tracker <http://bugs.python.org/issue23548> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com