From: Pablo Galindo Date: Wed, 29 Apr 2020 11:32:31 +0000 (+0100) Subject: Add missing sys import to socket_helper.py (GH-19791) X-Git-Tag: v3.9.0b1~255 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5089bcd33f5a10769cea7fd532b5d890859bf01d;p=thirdparty%2FPython%2Fcpython.git Add missing sys import to socket_helper.py (GH-19791) --- diff --git a/Lib/test/support/socket_helper.py b/Lib/test/support/socket_helper.py index b09c248cfccd..0ac844556292 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