(self, obj)
| 1022 | dispatch[tuple] = save_tuple |
| 1023 | |
| 1024 | def save_list(self, obj): |
| 1025 | if self.bin: |
| 1026 | self.write(EMPTY_LIST) |
| 1027 | else: # proto 0 -- can't use EMPTY_LIST |
| 1028 | self.write(MARK + LIST) |
| 1029 | |
| 1030 | self.memoize(obj) |
| 1031 | self._batch_appends(obj, obj) |
| 1032 | |
| 1033 | dispatch[list] = save_list |
| 1034 |
nothing calls this directly
no test coverage detected