Home
last modified time | relevance | path

Searched refs:_abc_cache (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/
D_py_abc.py49 cls._abc_cache = WeakSet()
89 cls._abc_cache.clear()
96 if subclass in cls._abc_cache:
113 if subclass in cls._abc_cache:
127 cls._abc_cache.add(subclass)
133 cls._abc_cache.add(subclass)
138 cls._abc_cache.add(subclass)
143 cls._abc_cache.add(subclass)
Dabc.py129 (_abc_registry, _abc_cache, _abc_negative_cache,
/third_party/python/Modules/
D_abc.c43 PyObject *_abc_cache; /* Normal set of weak references. */ member
53 Py_VISIT(self->_abc_cache); in abc_data_traverse()
62 Py_CLEAR(self->_abc_cache); in abc_data_clear()
92 self->_abc_cache = NULL; in abc_data_new()
253 if (impl->_abc_cache != NULL && PySet_Clear(impl->_abc_cache) < 0) { in _abc__reset_caches()
290 PySet_New(impl->_abc_cache), in _abc__get_dump()
599 int incache = _in_weak_set(impl->_abc_cache, subclass); in _abc__abc_instancecheck_impl()
691 incache = _in_weak_set(impl->_abc_cache, subclass); in _abc__abc_subclasscheck_impl()
730 if (_add_to_weak_set(&impl->_abc_cache, subclass) < 0) { in _abc__abc_subclasscheck_impl()
759 if (_add_to_weak_set(&impl->_abc_cache, subclass) < 0) { in _abc__abc_subclasscheck_impl()
[all …]
/third_party/python/Lib/test/libregrtest/
Drefleak.py19 return (registry_weakrefs, cls._abc_cache,
/third_party/python/Misc/NEWS.d/
D3.7.0b2.rst206 ``_abc_cache``, and ``_abc_negative_cache``. There are three debugging
D3.8.0a1.rst5769 ``_abc_cache``, and ``_abc_negative_cache``. There are three debugging