summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-04-29 11:32:31 (GMT)
committerGitHub <noreply@github.com>2020-04-29 11:32:31 (GMT)
commit5089bcd33f5a10769cea7fd532b5d890859bf01d (patch)
treede945bd564a4b80ca7243716e623ce2e506a7b74
parent4db245ee9ddbe6c53d375de59a35ff59dea2a8e0 (diff)
downloadcpython-5089bcd33f5a10769cea7fd532b5d890859bf01d.zip
cpython-5089bcd33f5a10769cea7fd532b5d890859bf01d.tar.gz
cpython-5089bcd33f5a10769cea7fd532b5d890859bf01d.tar.bz2
Add missing sys import to socket_helper.py (GH-19791)
-rw-r--r--Lib/test/support/socket_helper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/support/socket_helper.py b/Lib/test/support/socket_helper.py
index b09c248..0ac8445 100644
--- a/Lib/test/support/socket_helper.py
+++ b/Lib/test/support/socket_helper.py
@@ -2,6 +2,7 @@ import contextlib
import errno
import socket
import unittest
+import sys
from .. import support