diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-07-01 18:28:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 18:28:25 +0200 |
commit | 8f4ef3b019ce380022018587571b0f970e668de3 (patch) | |
tree | d3699d2cae322c515e7a81e516527324fadc2d4d /Lib/test/test_asyncio/test_windows_events.py | |
parent | f9b7457bd7f438263e0d2dd1f70589ad56a2585e (diff) | |
download | cpython-git-8f4ef3b019ce380022018587571b0f970e668de3.tar.gz |
Remove unused imports in tests (GH-14518)
Diffstat (limited to 'Lib/test/test_asyncio/test_windows_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_windows_events.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py index 1e1c01d713..64543268b1 100644 --- a/Lib/test/test_asyncio/test_windows_events.py +++ b/Lib/test/test_asyncio/test_windows_events.py @@ -2,7 +2,6 @@ import os import signal import socket import sys -import subprocess import time import threading import unittest @@ -12,14 +11,12 @@ if sys.platform != 'win32': raise unittest.SkipTest('Windows only') import _overlapped -import _testcapi import _winapi import asyncio from asyncio import windows_events from asyncio.streams import _StreamProtocol from test.test_asyncio import utils as test_utils -from test.support.script_helper import spawn_python def tearDownModule(): |