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