This exception is raised when there is a problem unpickling an object, such as a security violation. Note that other exceptions may also be raised during unpickling, including (but not necessarily limited to) AttributeError, EOFError, ImportError, and IndexError.
| 82 | pass |
| 83 | |
| 84 | class UnpicklingError(PickleError): |
| 85 | """This exception is raised when there is a problem unpickling an object, |
| 86 | such as a security violation. |
| 87 | |
| 88 | Note that other exceptions may also be raised during unpickling, including |
| 89 | (but not necessarily limited to) AttributeError, EOFError, ImportError, |
| 90 | and IndexError. |
| 91 | |
| 92 | """ |
| 93 | pass |
| 94 | |
| 95 | # An instance of _Stop is raised by Unpickler.load_stop() in response to |
| 96 | # the STOP opcode, passing the object that is the result of unpickling. |
no outgoing calls
no test coverage detected