Lines Matching refs:WeakValueDictionary
966 self.check_len_cycles(weakref.WeakValueDictionary, lambda n, k: (n, k))
996 self.check_len_race(weakref.WeakValueDictionary, lambda k: (1, k))
1023 dict = weakref.WeakValueDictionary()
1234 self.assertRaises(TypeError, weakref.WeakValueDictionary.__init__)
1235 self.assertRaises(TypeError, weakref.WeakValueDictionary, {}, {})
1236 self.assertRaises(TypeError, weakref.WeakValueDictionary, (), ())
1240 d = weakref.WeakValueDictionary(**{kw: o})
1245 dict = weakref.WeakValueDictionary()
1270 self.check_popitem(weakref.WeakValueDictionary,
1295 self.check_setdefault(weakref.WeakValueDictionary,
1324 self.check_update(weakref.WeakValueDictionary,
1327 self.assertRaises(TypeError, weakref.WeakValueDictionary.update)
1328 d = weakref.WeakValueDictionary()
1335 d = weakref.WeakValueDictionary()
1356 d = weakref.WeakValueDictionary()
1426 d = weakref.WeakValueDictionary()
1434 d = weakref.WeakValueDictionary()
1444 d = weakref.WeakValueDictionary()
1459 type2test = weakref.WeakValueDictionary