diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-22 08:35:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-22 08:35:23 (GMT) |
commit | f6228f02d70197cd876f608b8caf69a6b5211468 (patch) | |
tree | 005d8b8e45614974818270e9f592aee13a6d2427 /Lib | |
parent | 14d45c06eb0df15c548a99cc0f38c3060aa64579 (diff) | |
download | cpython-f6228f02d70197cd876f608b8caf69a6b5211468.zip cpython-f6228f02d70197cd876f608b8caf69a6b5211468.tar.gz cpython-f6228f02d70197cd876f608b8caf69a6b5211468.tar.bz2 |
Issue #23009: Add missing "import sys" in test_selectors
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_selectors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_selectors.py b/Lib/test/test_selectors.py index 8eddd17..952fda6 100644 --- a/Lib/test/test_selectors.py +++ b/Lib/test/test_selectors.py @@ -4,6 +4,7 @@ import random import selectors import signal import socket +import sys from test import support from time import sleep import unittest |