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