mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
gh-109162: libregrtest: use relative imports (#109250)
libregrtest.__init__ no longer exposes any symbol, so "python -m test.libregrtest.worker" imports less modules.
This commit is contained in:
parent
0c139b5f2f
commit
7aa8fcc8eb
17 changed files with 110 additions and 105 deletions
|
@ -6,10 +6,10 @@ from typing import TextIO, NoReturn
|
|||
from test import support
|
||||
from test.support import os_helper
|
||||
|
||||
from test.libregrtest.setup import setup_process, setup_test_dir
|
||||
from test.libregrtest.runtests import RunTests
|
||||
from test.libregrtest.single import run_single_test
|
||||
from test.libregrtest.utils import (
|
||||
from .setup import setup_process, setup_test_dir
|
||||
from .runtests import RunTests
|
||||
from .single import run_single_test
|
||||
from .utils import (
|
||||
StrPath, StrJSON, FilterTuple,
|
||||
get_work_dir, exit_timeout)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue