summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-04-29 12:32:31 +0100
committerGitHub <noreply@github.com>2020-04-29 12:32:31 +0100
commit5089bcd33f5a10769cea7fd532b5d890859bf01d (patch)
treede945bd564a4b80ca7243716e623ce2e506a7b74 /Lib/test
parent4db245ee9ddbe6c53d375de59a35ff59dea2a8e0 (diff)
downloadcpython-git-5089bcd33f5a10769cea7fd532b5d890859bf01d.tar.gz
Add missing sys import to socket_helper.py (GH-19791)
Diffstat (limited to 'Lib/test')
-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 b09c248cfc..0ac8445562 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