diff options
author | xdegaye <xdegaye@gmail.com> | 2017-11-24 17:56:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-24 17:56:22 (GMT) |
commit | 5742f674f7561dc9a1fc66d650e18e31b941183b (patch) | |
tree | 9950ccf56adb8a4333ee9a328fb30767bb3fc8b8 | |
parent | 78a5722ae950b80a4b3d13377957f3932195aef3 (diff) | |
download | cpython-5742f674f7561dc9a1fc66d650e18e31b941183b.zip cpython-5742f674f7561dc9a1fc66d650e18e31b941183b.tar.gz cpython-5742f674f7561dc9a1fc66d650e18e31b941183b.tar.bz2 |
bpo-28684: Remove useless import added by the previous commit (GH-4547)
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 78b30b9..a107912 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -22,7 +22,6 @@ import errno import unittest from unittest import mock import weakref -from test import support if sys.platform != 'win32': import tty |