()
| 1964 | |
| 1965 | @functools.cache |
| 1966 | def _lazy_load_getattr_static(): |
| 1967 | # Import getattr_static lazily so as not to slow down the import of typing.py |
| 1968 | # Cache the result so we don't slow down _ProtocolMeta.__instancecheck__ unnecessarily |
| 1969 | from inspect import getattr_static |
| 1970 | return getattr_static |
| 1971 | |
| 1972 | |
| 1973 | _cleanups.append(_lazy_load_getattr_static.cache_clear) |
no outgoing calls
no test coverage detected
searching dependent graphs…