(result)
| 40 | |
| 41 | _results = weakref.WeakKeyDictionary() |
| 42 | def registerResult(result): |
| 43 | _results[result] = 1 |
| 44 | |
| 45 | def removeResult(result): |
| 46 | return bool(_results.pop(result, None)) |
no outgoing calls
no test coverage detected
searching dependent graphs…