bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)

This commit is contained in:
Yury Selivanov 2017-12-11 10:04:40 -05:00 committed by GitHub
parent 9edad3c701
commit 3e9751819a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 29 additions and 61 deletions

View file

@ -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):