asyncio: sync with Tulip

This commit is contained in:
Victor Stinner 2014-12-18 12:29:53 +01:00
parent 3a1c738e6c
commit dc7765d12c
6 changed files with 37 additions and 16 deletions

View file

@ -1,13 +1,17 @@
from asyncio import subprocess
from asyncio import test_utils
import asyncio
import signal
import sys
import unittest
from unittest import mock
from test import support
import asyncio
from asyncio import subprocess
from asyncio import test_utils
if sys.platform != 'win32':
from asyncio import unix_events
try:
from test import support # PIPE_MAX_SIZE
except ImportError:
from asyncio import test_support as support
# Program blocking
PROGRAM_BLOCKED = [sys.executable, '-c', 'import time; time.sleep(3600)']