Searched refs:method_cache (Results 1 – 13 of 13) sorted by relevance
3 from ._functools import method_cache90 @method_cache
6 def method_cache(method, cache_wrapper=None): function
24 from ._functools import method_cache, pass_none794 @method_cache
20 from ._functools import method_cache810 @method_cache
11 from setuptools.extern.jaraco.functools import compose, method_cache120 @method_cache
11 from pkg_resources.extern.jaraco.functools import compose, method_cache120 @method_cache
34 static struct method_cache_entry method_cache[1 << MCACHE_SIZE_EXP]; variable60 sizeof(method_cache) / 1024); in PyType_ClearCache()64 method_cache[i].version = 0; in PyType_ClearCache()65 Py_CLEAR(method_cache[i].name); in PyType_ClearCache()66 method_cache[i].value = NULL; in PyType_ClearCache()189 method_cache[i].value = NULL; in assign_version_tag()191 Py_XSETREF(method_cache[i].name, Py_None); in assign_version_tag()2539 if (method_cache[h].version == type->tp_version_tag && in _PyType_Lookup()2540 method_cache[h].name == name) { in _PyType_Lookup()2544 return method_cache[h].value; in _PyType_Lookup()[all …]
100 def method_cache( function
142 Objects/typeobject.c:method_cache static struct method_cache_entry m…
2094 Objects/typeobject.c - method_cache -