summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_call.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2025-03-13 09:55:23 (GMT)
committerGitHub <noreply@github.com>2025-03-13 09:55:23 (GMT)
commit73ab9e2eded4706ccdc0ab0286ff986bb552a1bf (patch)
tree8f0accd30c22a574b9ffb94b8d2ae34ba6c2f680 /Lib/test/test_call.py
parent0c6c52f49605f757c4a125ca195a2123bd930b93 (diff)
downloadcpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.zip
cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.tar.gz
cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.tar.bz2
gh-131152: Remove unused imports from tests (#131153)
Diffstat (limited to 'Lib/test/test_call.py')
-rw-r--r--Lib/test/test_call.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py
index f1b6c55..185ae84 100644
--- a/Lib/test/test_call.py
+++ b/Lib/test/test_call.py
@@ -1,7 +1,9 @@
import unittest
from test.support import (cpython_only, is_wasi, requires_limited_api, Py_DEBUG,
- set_recursion_limit, skip_on_s390x, exceeds_recursion_limit, skip_emscripten_stack_overflow, skip_wasi_stack_overflow,
- skip_if_sanitizer, import_helper)
+ set_recursion_limit, skip_on_s390x,
+ skip_emscripten_stack_overflow,
+ skip_wasi_stack_overflow, skip_if_sanitizer,
+ import_helper)
try:
import _testcapi
except ImportError: