diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-06-28 11:55:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 11:55:41 (GMT) |
commit | d830c4a944bcdcc8fe729a60f438fc762965eec1 (patch) | |
tree | ff7b86825a4cffc756788e4e8e6540544cb1008d /Lib/test/test_tokenize.py | |
parent | 6c60684bf5d34fae27a2f6a142ff794b38cefe1b (diff) | |
download | cpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.zip cpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.tar.gz cpython-d830c4a944bcdcc8fe729a60f438fc762965eec1.tar.bz2 |
gh-106200: Remove unused imports (#106201)
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 97c4884..d1552d8 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -6,7 +6,6 @@ from io import BytesIO, StringIO from textwrap import dedent from unittest import TestCase, mock from test import support -from test.support import os_helper from test.test_grammar import (VALID_UNDERSCORE_LITERALS, INVALID_UNDERSCORE_LITERALS) from test.support import os_helper |