| 82 | |
| 83 | # For test_misc and test_getinitargs |
| 84 | class initarg(C): |
| 85 | |
| 86 | def __init__(self, a, b): |
| 87 | self.a = a |
| 88 | self.b = b |
| 89 | |
| 90 | def __getinitargs__(self): |
| 91 | return self.a, self.b |
| 92 | |
| 93 | # For test_metaclass |
| 94 | class metaclass(type): |
no outgoing calls
searching dependent graphs…