[3.14] Fix implicit import in test_monitoring.py (gh-141795) (gh-141920)

(cherry picked from commit 369ce2b139)

Co-authored-by: SubbaraoGarlapati <53627478+SubbaraoGarlapati@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-11-24 21:19:20 +01:00 committed by GitHub
parent 0f2f4c0e60
commit 7ccdbbd04e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,10 +12,10 @@
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)