(self, *args)
| 36 | _copyreg_dispatch_table = copyreg.dispatch_table |
| 37 | |
| 38 | def __init__(self, *args): |
| 39 | super().__init__(*args) |
| 40 | self.dispatch_table = self._copyreg_dispatch_table.copy() |
| 41 | self.dispatch_table.update(self._extra_reducers) |
| 42 | |
| 43 | @classmethod |
| 44 | def register(cls, type, reduce): |