diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-11-08 16:56:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-08 16:56:24 (GMT) |
commit | 992c3f6b51edd58ad6c751af9aa6a7819e2796c1 (patch) | |
tree | 97d29282beee8f76d54d1c405dd4359a0c1d76bd /Lib/test/test_typing.py | |
parent | 42699c82d7b274c73ab0f3970bf27e2228b813d1 (diff) | |
download | cpython-992c3f6b51edd58ad6c751af9aa6a7819e2796c1.zip cpython-992c3f6b51edd58ad6c751af9aa6a7819e2796c1.tar.gz cpython-992c3f6b51edd58ad6c751af9aa6a7819e2796c1.tar.bz2 |
[3.12] gh-108303: Move more typing related files to Lib/test/typinganndata (GH-111825) (#111859)
[3.12] gh-108303: Move more typing related files to Lib/test/typinganndata(GH-111825)
Diffstat (limited to 'Lib/test/test_typing.py')
-rw-r--r-- | Lib/test/test_typing.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index dc5ab7d..62fe00b 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -46,8 +46,7 @@ import weakref import types from test.support import import_helper, captured_stderr, cpython_only -from test import mod_generics_cache -from test import _typed_dict_helper +from test.typinganndata import mod_generics_cache, _typed_dict_helper CANNOT_SUBCLASS_TYPE = 'Cannot subclass special typing classes' |