summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tokenize.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-10-10 20:15:11 (GMT)
committerGitHub <noreply@github.com>2023-10-10 20:15:11 (GMT)
commit732532b0af9d1b5c7ae4932526c8d20d86c15507 (patch)
tree36cee3d5f6afa96233d5e8b930ab764351050ca4 /Lib/test/test_tokenize.py
parent9cfb4e0d1ebf2900c19ee07697818c621f46cc3d (diff)
downloadcpython-732532b0af9d1b5c7ae4932526c8d20d86c15507.zip
cpython-732532b0af9d1b5c7ae4932526c8d20d86c15507.tar.gz
cpython-732532b0af9d1b5c7ae4932526c8d20d86c15507.tar.bz2
gh-108303: Move all inspect test files to `test_inspect/` (#109607)
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r--Lib/test/test_tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py
index 9369560..06517ac 100644
--- a/Lib/test/test_tokenize.py
+++ b/Lib/test/test_tokenize.py
@@ -1911,7 +1911,7 @@ class TestRoundtrip(TestCase):
# TODO: Remove this once we can untokenize PEP 701 syntax
testfiles.remove(os.path.join(tempdir, "test_fstring.py"))
- for f in ('buffer', 'builtin', 'fileio', 'inspect', 'os', 'platform', 'sys'):
+ for f in ('buffer', 'builtin', 'fileio', 'os', 'platform', 'sys'):
testfiles.remove(os.path.join(tempdir, "test_%s.py") % f)
if not support.is_resource_enabled("cpu"):