diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-03-14 10:20:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 10:20:20 (GMT) |
commit | c4a22ad89978ee5c12a178b95203c38502215975 (patch) | |
tree | e910a850dd7cdb122f3539c3641cc23668eee675 /Lib | |
parent | 991710af022f27db862ff1399178bcc76b062669 (diff) | |
download | cpython-c4a22ad89978ee5c12a178b95203c38502215975.zip cpython-c4a22ad89978ee5c12a178b95203c38502215975.tar.gz cpython-c4a22ad89978ee5c12a178b95203c38502215975.tar.bz2 |
[3.12] gh-116785: Fix direct invocation of `test_inspect` (GH-116787) (#116794)
gh-116785: Fix direct invocation of `test_inspect` (GH-116787)
(cherry picked from commit 66fb613d90fe3dea32130a5937963a9362c8a59e)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_inspect/test_inspect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index 48018fe..8a69dd2 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -33,11 +33,11 @@ from test.support.os_helper import TESTFN from test.support.script_helper import assert_python_ok, assert_python_failure from test import support -from . import inspect_fodder as mod -from . import inspect_fodder2 as mod2 -from . import inspect_stock_annotations -from . import inspect_stringized_annotations -from . import inspect_stringized_annotations_2 +from test.test_inspect import inspect_fodder as mod +from test.test_inspect import inspect_fodder2 as mod2 +from test.test_inspect import inspect_stock_annotations +from test.test_inspect import inspect_stringized_annotations +from test.test_inspect import inspect_stringized_annotations_2 # Functions tested in this suite: |