(self, obj)
| 5750 | self.dumps = dumps |
| 5751 | self.loads = loads |
| 5752 | def copy(self, obj): |
| 5753 | return self.loads(self.dumps(obj, self.proto)) |
| 5754 | def __repr__(self): |
| 5755 | # We try to be as descriptive as possible here since this is |
| 5756 | # the string which we will allow us to tell the pickle |
no test coverage detected