Searched refs:WeakValueDictionary (Results 1 - 10 of 10) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_weakref.py | 1240 self.check_len_cycles(weakref.WeakValueDictionary, lambda k: (1, k)) 1270 self.check_len_race(weakref.WeakValueDictionary, lambda k: (1, k)) 1298 dict = weakref.WeakValueDictionary() 1554 dict = weakref.WeakValueDictionary({364:o}) 1559 dict = weakref.WeakValueDictionary({364:o}) 1560 dict2 = weakref.WeakValueDictionary(dict) 1565 self.assertRaises(TypeError, weakref.WeakValueDictionary.__init__) 1566 self.assertRaises(TypeError, weakref.WeakValueDictionary, {}, {}) 1567 self.assertRaises(TypeError, weakref.WeakValueDictionary, (), ()) 1571 d = weakref.WeakValueDictionary(**{k [all...] |
H A D | test_copy.py | 848 self._check_copy_weakdict(weakref.WeakValueDictionary) 875 u = weakref.WeakValueDictionary()
|
/third_party/python/Lib/ |
H A D | weakref.py | 32 "CallableProxyType", "ProxyTypes", "WeakValueDictionary", 92 class WeakValueDictionary(_collections_abc.MutableMapping): class 100 # checks (if the other dictionary is a WeakValueDictionary, 172 new = WeakValueDictionary() 338 This is used in the WeakValueDictionary to avoid having to create
|
H A D | symtable.py | 23 self.__memo = weakref.WeakValueDictionary()
|
/third_party/python/Lib/zoneinfo/ |
H A D | _zoneinfo.py | 33 _weak_cache = weakref.WeakValueDictionary() 38 cls._weak_cache = weakref.WeakValueDictionary()
|
/third_party/python/Lib/multiprocessing/ |
H A D | util.py | 159 _afterfork_registry = weakref.WeakValueDictionary()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | utils.py | 379 self._transports = weakref.WeakValueDictionary()
|
H A D | test_events.py | 2201 wd = weakref.WeakValueDictionary()
|
/third_party/python/Lib/asyncio/ |
H A D | selector_events.py | 57 self._transports = weakref.WeakValueDictionary()
|
/third_party/python/Lib/logging/ |
H A D | __init__.py | 842 _handlers = weakref.WeakValueDictionary() #map of handler names to handlers
|
Completed in 16 milliseconds