| 189 | # See https://github.com/python/cpython/issues/89988 |
| 190 | |
| 191 | class Pickler(self.pickler): |
| 192 | def __init__(self, *args, **kwargs): |
| 193 | self.dispatch_table = table |
| 194 | super().__init__(*args, **kwargs) |
| 195 | |
| 196 | class DispatchTable: |
| 197 | pass |
no outgoing calls
searching dependent graphs…