Lines Matching refs:tmp1
1679 tmp1 = wvd1 | wvd2 # Between two WeakValueDictionaries
1680 self.assertEqual(dict(tmp1), dict(wvd1) | dict(wvd2))
1681 self.assertIs(type(tmp1), weakref.WeakValueDictionary)
1683 self.assertEqual(wvd1, tmp1)
1701 self.assertNotIn(2, tmp1)
1731 tmp1 = wkd1 | wkd2 # Between two WeakKeyDictionaries
1732 self.assertEqual(dict(tmp1), dict(wkd1) | dict(wkd2))
1733 self.assertIs(type(tmp1), weakref.WeakKeyDictionary)
1735 self.assertEqual(wkd1, tmp1)
1753 self.assertNotIn(4, tmp1.values())