make sure monkey patches are applied when asyncio.open_connection() is used

release-1
Sebastien Bourdeauducq 2016-07-13 11:29:18 +08:00
parent 972a74219d
commit c27f157a27
3 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import asyncio
import logging
import re
from artiq.monkey_patches import *
from artiq.protocols.asyncio_server import AsyncioServer
from artiq.tools import TaskObject, MultilineFormatter

View File

@ -20,6 +20,7 @@ import logging
import inspect
from operator import itemgetter
from artiq.monkey_patches import *
from artiq.protocols import pyon
from artiq.protocols.asyncio_server import AsyncioServer as _AsyncioServer

View File

@ -14,6 +14,7 @@ import asyncio
from operator import getitem
from functools import partial
from artiq.monkey_patches import *
from artiq.protocols import pyon
from artiq.protocols.asyncio_server import AsyncioServer