mirror of https://github.com/m-labs/artiq.git
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:
commit
056a5a7e4d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue