(self)
| 332 | self.assertEqual(operator.xor(0xb, 0xc), 0x7) |
| 333 | |
| 334 | def test_is(self): |
| 335 | operator = self.module |
| 336 | a = b = 'xyzpdq' |
| 337 | c = a[:3] + b[3:] |
| 338 | self.assertRaises(TypeError, operator.is_) |
| 339 | self.assertTrue(operator.is_(a, b)) |
| 340 | self.assertFalse(operator.is_(a,c)) |
| 341 | |
| 342 | def test_is_not(self): |
| 343 | operator = self.module |
nothing calls this directly
no test coverage detected