diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 14:04:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 14:04:22 (GMT) |
commit | 6b0fa70547dfd4c738a11576b0f19d426a5d4c82 (patch) | |
tree | 28fbc1859e4103e1353757fd7bd63ddc33b24be3 /Lib | |
parent | f67255ab94742b017697bdedfd4c8eb25dac6f82 (diff) | |
download | cpython-6b0fa70547dfd4c738a11576b0f19d426a5d4c82.zip cpython-6b0fa70547dfd4c738a11576b0f19d426a5d4c82.tar.gz cpython-6b0fa70547dfd4c738a11576b0f19d426a5d4c82.tar.bz2 |
test_selectors: remove unused imports
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_selectors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py index f7e84b7..5e55eee 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -5,7 +5,7 @@ import selectors import signal import socket from test import support -from time import sleep, perf_counter, get_clock_info +from time import sleep import unittest import unittest.mock try: |