mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Fix implicit import in test_monitoring.py (gh-141795)
This commit is contained in:
parent
fee7782650
commit
369ce2b139
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue