(self)
| 1201 | hash(A()) |
| 1202 | |
| 1203 | def test_hex(self): |
| 1204 | self.assertEqual(hex(16), '0x10') |
| 1205 | self.assertEqual(hex(-16), '-0x10') |
| 1206 | self.assertRaises(TypeError, hex, {}) |
| 1207 | |
| 1208 | def test_id(self): |
| 1209 | id(None) |
nothing calls this directly
no test coverage detected