monkey_patches: cleanup

This commit is contained in:
Robert Jördens 2017-02-28 13:20:41 +01:00
parent 056a5a7e4d
commit 3af29f7a59
1 changed files with 1 additions and 1 deletions

View File

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