(self)
| 1803 | return 'hello, %s' % self |
| 1804 | class MyInt(int): |
| 1805 | def repr(self): |
| 1806 | return hex(self) |
| 1807 | with self.assertRaisesRegex(TypeError, 'too many data types'): |
| 1808 | class Huh(MyStr, MyInt, Enum): |
| 1809 | One = 1 |
no outgoing calls
no test coverage detected