Merge branch 'py3.5.3_monkey-patch' of https://github.com/cjbe/artiq

* 'py3.5.3_monkey-patch' of https://github.com/cjbe/artiq:
  monkey-patch Python 3.5.3 asyncio.base_events._ipaddr_info this fixes #506 for py3.5.3
This commit is contained in:
Robert Jördens 2017-02-28 13:19:08 +01:00
commit 056a5a7e4d
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