diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-11 07:02:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 07:02:35 (GMT) |
commit | 7aa8fcc8eb700bd4ae4bc19e086ce7ff5916f7bd (patch) | |
tree | b63f494f92c0db217182a614a035e4e839cc4768 /Lib/test/__main__.py | |
parent | 0c139b5f2fb9c8a9e6df58e5da9d4a992d17926d (diff) | |
download | cpython-7aa8fcc8eb700bd4ae4bc19e086ce7ff5916f7bd.zip cpython-7aa8fcc8eb700bd4ae4bc19e086ce7ff5916f7bd.tar.gz cpython-7aa8fcc8eb700bd4ae4bc19e086ce7ff5916f7bd.tar.bz2 |
gh-109162: libregrtest: use relative imports (#109250)
libregrtest.__init__ no longer exposes any symbol, so
"python -m test.libregrtest.worker" imports less modules.
Diffstat (limited to 'Lib/test/__main__.py')
-rw-r--r-- | Lib/test/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/__main__.py b/Lib/test/__main__.py index 19a6b2b..e5780b7 100644 --- a/Lib/test/__main__.py +++ b/Lib/test/__main__.py @@ -1,2 +1,2 @@ -from test.libregrtest import main +from test.libregrtest.main import main main() |