diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-13 09:55:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-13 09:55:23 (GMT) |
commit | 73ab9e2eded4706ccdc0ab0286ff986bb552a1bf (patch) | |
tree | 8f0accd30c22a574b9ffb94b8d2ae34ba6c2f680 /Lib/test/test_embed.py | |
parent | 0c6c52f49605f757c4a125ca195a2123bd930b93 (diff) | |
download | cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.zip cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.tar.gz cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.tar.bz2 |
gh-131152: Remove unused imports from tests (#131153)
Diffstat (limited to 'Lib/test/test_embed.py')
-rw-r--r-- | Lib/test/test_embed.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index de54d06..fdece75 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -1,12 +1,10 @@ # Run the tests in Programs/_testembed.c (tests for the CPython embedding APIs) from test import support -from test.libregrtest.utils import get_build_info from test.support import import_helper, os_helper, threading_helper, MS_WINDOWS import unittest from collections import namedtuple import contextlib -import io import json import os import os.path |