mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
This commit is contained in:
parent
9edad3c701
commit
3e9751819a
17 changed files with 29 additions and 61 deletions
|
@ -1,10 +1,8 @@
|
|||
"""Tests for window_utils"""
|
||||
|
||||
import socket
|
||||
import sys
|
||||
import unittest
|
||||
import warnings
|
||||
from unittest import mock
|
||||
|
||||
if sys.platform != 'win32':
|
||||
raise unittest.SkipTest('Windows only')
|
||||
|
@ -13,10 +11,7 @@ import _overlapped
|
|||
import _winapi
|
||||
|
||||
from asyncio import windows_utils
|
||||
try:
|
||||
from test import support
|
||||
except ImportError:
|
||||
from asyncio import test_support as support
|
||||
from test import support
|
||||
|
||||
|
||||
class PipeTests(unittest.TestCase):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue