diff options
author | cclauss <cclauss@me.com> | 2019-01-06 22:10:55 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-01-06 22:10:55 (GMT) |
commit | a0bb51e44cd43a7d2836a96a3804162203e44514 (patch) | |
tree | 04850f464efaf5dc44c19079b904da900aaee923 | |
parent | 11303dd6035a7d7f78025ce5a3e3b9bdf7380c9a (diff) | |
download | cpython-a0bb51e44cd43a7d2836a96a3804162203e44514.zip cpython-a0bb51e44cd43a7d2836a96a3804162203e44514.tar.gz cpython-a0bb51e44cd43a7d2836a96a3804162203e44514.tar.bz2 |
test_threading_local: add missing "import sys" (GH-8049)
-rw-r--r-- | Lib/test/test_threading_local.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threading_local.py b/Lib/test/test_threading_local.py index 984f8dd..2fd14ae 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 |