From: cclauss Date: Sun, 6 Jan 2019 22:10:55 +0000 (+0100) Subject: test_threading_local: add missing "import sys" (GH-8049) X-Git-Tag: v3.8.0a1~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0bb51e44cd43a7d2836a96a3804162203e44514;p=thirdparty%2FPython%2Fcpython.git test_threading_local: add missing "import sys" (GH-8049) --- diff --git a/Lib/test/test_threading_local.py b/Lib/test/test_threading_local.py index 984f8dda3743..2fd14ae2e16f 100644 --- a/Lib/test/test_threading_local.py +++ b/Lib/test/test_threading_local.py @@ -1,3 +1,4 @@ +import sys import unittest from doctest import DocTestSuite from test import support