]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix implicit import in `test_monitoring.py` (gh-141795)
authorSubbaraoGarlapati <53627478+SubbaraoGarlapati@users.noreply.github.com>
Mon, 24 Nov 2025 19:48:28 +0000 (14:48 -0500)
committerGitHub <noreply@github.com>
Mon, 24 Nov 2025 19:48:28 +0000 (14:48 -0500)
Lib/test/test_monitoring.py

index 9b940740ca1bf95cf14c1b53d13dc8a0bb0b2f47..83bf510ceea18ca7a646e944886f73c84e2b8451 100644 (file)
@@ -12,10 +12,10 @@ import types
 import unittest
 
 import test.support
-from test.support import requires_specialization_ft, script_helper
+from test.support import import_helper, requires_specialization_ft, script_helper
 
-_testcapi = test.support.import_helper.import_module("_testcapi")
-_testinternalcapi = test.support.import_helper.import_module("_testinternalcapi")
+_testcapi = import_helper.import_module("_testcapi")
+_testinternalcapi = import_helper.import_module("_testinternalcapi")
 
 PAIR = (0,1)