mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
asyncio: sync with Tulip
This commit is contained in:
parent
3a1c738e6c
commit
dc7765d12c
6 changed files with 37 additions and 16 deletions
|
|
@ -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)']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue