From 5fee0a2add1df2a1c912e7be8a1d54612381702c Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 6 Jan 2019 23:10:55 +0100 Subject: [PATCH] test_threading_local: add missing "import sys" (GH-8049) (cherry picked from commit a0bb51e44cd43a7d2836a96a3804162203e44514) Co-authored-by: cclauss --- Lib/test/test_threading_local.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_threading_local.py b/Lib/test/test_threading_local.py index 984f8dda374384..2fd14ae2e16f3d 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