diff options
| author | Victor Stinner <vstinner@python.org> | 2022-06-13 14:56:03 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-13 14:56:03 (GMT) |
| commit | 3ceb4b8d3ad48101e67da8fb8f581d3377863bfa (patch) | |
| tree | 6746b2bc59319492d2d4ea7d0ebbfc867f5912ca /Lib/test/test_binascii.py | |
| parent | 65ff27c7d30b84655bf8caf6e396c65485708148 (diff) | |
| download | cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.zip cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.tar.gz cpython-3ceb4b8d3ad48101e67da8fb8f581d3377863bfa.tar.bz2 | |
gh-84623: Remove unused imports in tests (#93772)
Diffstat (limited to 'Lib/test/test_binascii.py')
| -rw-r--r-- | Lib/test/test_binascii.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py index 7087d7a..a2d7d02 100644 --- a/Lib/test/test_binascii.py +++ b/Lib/test/test_binascii.py @@ -4,7 +4,7 @@ import unittest import binascii import array import re -from test.support import bigmemtest, _1G, _4G, warnings_helper +from test.support import bigmemtest, _1G, _4G # Note: "*_hex" functions are aliases for "(un)hexlify" |
