mirror of https://github.com/python/cpython.git
[3.11] gh-116785: Fix direct invocation of `test_inspect` (GH-116787) (#116795)
gh-116785: Fix direct invocation of `test_inspect` (GH-116787)
(cherry picked from commit 66fb613d90
)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
parent
1080dd166d
commit
c42e709e5a
|
@ -32,11 +32,11 @@
|
||||||
from test.support.script_helper import assert_python_ok, assert_python_failure
|
from test.support.script_helper import assert_python_ok, assert_python_failure
|
||||||
from test import support
|
from test import support
|
||||||
|
|
||||||
from . import inspect_fodder as mod
|
from test.test_inspect import inspect_fodder as mod
|
||||||
from . import inspect_fodder2 as mod2
|
from test.test_inspect import inspect_fodder2 as mod2
|
||||||
from . import inspect_stock_annotations
|
from test.test_inspect import inspect_stock_annotations
|
||||||
from . import inspect_stringized_annotations
|
from test.test_inspect import inspect_stringized_annotations
|
||||||
from . import inspect_stringized_annotations_2
|
from test.test_inspect import inspect_stringized_annotations_2
|
||||||
|
|
||||||
|
|
||||||
# Functions tested in this suite:
|
# Functions tested in this suite:
|
||||||
|
|
Loading…
Reference in New Issue