(self, obj)
| 5513 | self.dumps = dumps |
| 5514 | self.loads = loads |
| 5515 | def copy(self, obj): |
| 5516 | return self.loads(self.dumps(obj, self.proto)) |
| 5517 | def __repr__(self): |
| 5518 | # We try to be as descriptive as possible here since this is |
| 5519 | # the string which we will allow us to tell the pickle |
no test coverage detected