(a, b)
| 446 | |
| 447 | |
| 448 | def update_generic(a, b): |
| 449 | for type_check, update in UPDATE_RULES: |
| 450 | if type_check(a, b): |
| 451 | update(a, b) |
| 452 | return True |
| 453 | return False |
| 454 | |
| 455 | |
| 456 | class StrongRef: |
no outgoing calls
no test coverage detected
searching dependent graphs…