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

@ -6,9 +6,13 @@ import sys
import types
import unittest
import weakref
from test import support
from test.script_helper import assert_python_ok
from unittest import mock
try:
from test import support # gc_collect
from test.script_helper import assert_python_ok
except ImportError:
from asyncio import test_support as support
from asyncio.test_support import assert_python_ok
import asyncio
from asyncio import coroutines