We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7038ace commit 238f009Copy full SHA for 238f009
sources/dynadoc/interfaces.py
@@ -23,6 +23,8 @@
23
24
from __future__ import annotations
25
26
+import typing as _typing # https://github.com/python/cpython/issues/133956
27
+
28
from . import __
29
from . import nomina as _nomina
30
@@ -73,8 +75,9 @@ class AnnotationsCache:
73
75
Has special values for absent and incomplete entries.
74
76
'''
77
- absent: __.typx.ClassVar[ object ] = object( )
- incomplete: __.typx.ClassVar[ object ] = object( )
78
+ # https://github.com/python/cpython/issues/133956
79
+ absent: _typing.ClassVar[ object ] = object( )
80
+ incomplete: _typing.ClassVar[ object ] = object( )
81
82
entries: dict[ __.typx.Any, __.typx.Any ] = (
83
__.dcls.field( default_factory = dict[ __.typx.Any, __.typx.Any ] ) )
0 commit comments