(self)
| 80 | class ErrorAtPickle(object): |
| 81 | """Bad object that triggers an error at pickling time.""" |
| 82 | def __reduce__(self): |
| 83 | from pickle import PicklingError |
| 84 | raise PicklingError("Error in pickle") |
| 85 | |
| 86 | |
| 87 | class ErrorAtUnpickle(object): |
nothing calls this directly
no test coverage detected