[Python-checkins] cpython (3.4): Issue #23009: Add missing "import sys" in test_selectors

victor.stinner python-checkins at python.org
Thu Jan 22 09:36:19 CET 2015


https://hg.python.org/cpython/rev/4f928c70f135
changeset:   94238:4f928c70f135
branch:      3.4
parent:      94236:d3a27a27e008
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Jan 22 09:35:23 2015 +0100
summary:
  Issue #23009: Add missing "import sys" in test_selectors

files:
  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
--- a/Lib/test/test_selectors.py
+++ b/Lib/test/test_selectors.py
@@ -4,6 +4,7 @@
 import selectors
 import signal
 import socket
+import sys
 from test import support
 from time import sleep
 import unittest

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list