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