monkey-patch Python 3.5.3 asyncio.base_events._ipaddr_info

this fixes #506 for py3.5.3
This commit is contained in:
Chris Ballance 2017-02-28 10:49:19 +00:00
parent 9cfa3e704b
commit 00ed3909dd
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import sys
__all__ = []
if sys.version_info[:3] == (3, 5, 2):
if sys.version_info[:2] == (3, 5) and sys.version_info[2] in (2, 3):
import asyncio
# See https://github.com/m-labs/artiq/issues/506