diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-17 19:05:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 19:05:56 (GMT) |
commit | c608477532c56decd70afd5c5390973bda6df58f (patch) | |
tree | 2758a6bc0591eb148a4209f2912beafc0ce54a67 /Lib/test/support | |
parent | 5a8a979aeb7c9494949cbe5142d37dc5781a7bde (diff) | |
download | cpython-c608477532c56decd70afd5c5390973bda6df58f.zip cpython-c608477532c56decd70afd5c5390973bda6df58f.tar.gz cpython-c608477532c56decd70afd5c5390973bda6df58f.tar.bz2 |
gh-120417: Remove unused imports in tests (part 1) (#120629)
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index adc6362..a045c88 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -4,7 +4,6 @@ if __name__ != 'test.support': raise ImportError('support must be imported from the test package') import contextlib -import dataclasses import functools import _opcode import os |