(self, obj)
| 1006 | dispatch[tuple] = save_tuple |
| 1007 | |
| 1008 | def save_list(self, obj): |
| 1009 | if self.bin: |
| 1010 | self.write(EMPTY_LIST) |
| 1011 | else: # proto 0 -- can't use EMPTY_LIST |
| 1012 | self.write(MARK + LIST) |
| 1013 | |
| 1014 | self.memoize(obj) |
| 1015 | self._batch_appends(obj, obj) |
| 1016 | |
| 1017 | dispatch[list] = save_list |
| 1018 |
nothing calls this directly
no test coverage detected