| 261 | # See https://github.com/python/cpython/issues/89988 |
| 262 | |
| 263 | class Pickler(self.pickler): |
| 264 | def __init__(self, *args, **kwargs): |
| 265 | self.dispatch_table = table |
| 266 | super().__init__(*args, **kwargs) |
| 267 | |
| 268 | class DispatchTable: |
| 269 | pass |
no outgoing calls