This exception is raised when an unpicklable object is passed to the dump() method.
| 75 | pass |
| 76 | |
| 77 | class PicklingError(PickleError): |
| 78 | """This exception is raised when an unpicklable object is passed to the |
| 79 | dump() method. |
| 80 | |
| 81 | """ |
| 82 | pass |
| 83 | |
| 84 | class UnpicklingError(PickleError): |
| 85 | """This exception is raised when there is a problem unpickling an object, |
no outgoing calls
no test coverage detected