(self)
| 537 | async def test_record_subclass_06(self): |
| 538 | class MyRecord(asyncpg.Record): |
| 539 | def __init__(self): |
| 540 | raise AssertionError('this is not supposed to be called') |
| 541 | |
| 542 | class MyRecord2(asyncpg.Record): |
| 543 | def __new__(cls): |
nothing calls this directly
no outgoing calls
no test coverage detected