| 102 | """Test (un)specialization of LOAD_SUPER_ATTR opcode.""" |
| 103 | |
| 104 | class C: |
| 105 | def __init__(self): |
| 106 | try: |
| 107 | super().__init__ |
| 108 | super().__init__() |
| 109 | except RuntimeError: |
| 110 | pass # happens if __class__ is replaced with non-type |
| 111 | |
| 112 | def access(): |
| 113 | C() |
no outgoing calls