| 519 | g_partial = None |
| 520 | |
| 521 | class Function: |
| 522 | def __init__(self, name): |
| 523 | self.name = name |
| 524 | |
| 525 | def __call__(self): |
| 526 | return None |
| 527 | |
| 528 | def __repr__(self): |
| 529 | return f"Function({self.name})" |
| 530 | |
| 531 | class EvilObject: |
| 532 | def __init__(self): |
no outgoing calls
searching dependent graphs…