mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk).
This commit is contained in:
parent
90fb914b4b
commit
5969128a86
7 changed files with 137 additions and 195 deletions
|
@ -11,11 +11,7 @@ if sys.platform != 'win32':
|
|||
import _winapi
|
||||
|
||||
from asyncio import windows_utils
|
||||
|
||||
try:
|
||||
import _overlapped
|
||||
except ImportError:
|
||||
from asyncio import _overlapped
|
||||
from asyncio import _overlapped
|
||||
|
||||
|
||||
class WinsocketpairTests(unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue