| 3704 | |
| 3705 | def test_protocols_isinstance_py36(self): |
| 3706 | class APoint: |
| 3707 | def __init__(self, x, y, label): |
| 3708 | self.x = x |
| 3709 | self.y = y |
| 3710 | self.label = label |
| 3711 | |
| 3712 | class BPoint: |
| 3713 | label = 'B' |
no outgoing calls
searching dependent graphs…