summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_typing.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-11-08 14:19:34 (GMT)
committerGitHub <noreply@github.com>2023-11-08 14:19:34 (GMT)
commit82e36dba45b750ad4ed68735eb05bb939968a1fa (patch)
tree77454776f77b7610c477ce030ea8a2d8c0258095 /Lib/test/test_typing.py
parent8fbe5314cd6544bdcd50b3a57e0f8a9c6bf97374 (diff)
downloadcpython-82e36dba45b750ad4ed68735eb05bb939968a1fa.zip
cpython-82e36dba45b750ad4ed68735eb05bb939968a1fa.tar.gz
cpython-82e36dba45b750ad4ed68735eb05bb939968a1fa.tar.bz2
gh-108303: Move more `typing` related files to `Lib/test/typinganndata` (#111825)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib/test/test_typing.py')
-rw-r--r--Lib/test/test_typing.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index 6ff79e8..1e812e1 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -45,8 +45,7 @@ import weakref
import types
from test.support import captured_stderr, cpython_only, infinite_recursion
-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'