MCPcopy Index your code
hub / github.com/python/cpython / _LazyAnnotationLib

Class _LazyAnnotationLib

Lib/typing.py:165–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

163]
164
165class _LazyAnnotationLib:
166 def __getattr__(self, attr):
167 global _lazy_annotationlib
168 import annotationlib
169 _lazy_annotationlib = annotationlib
170 return getattr(annotationlib, attr)
171
172_lazy_annotationlib = _LazyAnnotationLib()
173

Callers 1

typing.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…