From 728eb77ee2cd638eb174e29f25c6293232db69c5 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 2 Jul 2018 15:18:38 +0200 Subject: [PATCH] import sys in test_threading_local.py for line 144 __sys__ is used on line 144 but it is never imported. --- 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