Home
last modified time | relevance | path

Searched refs:PickleError (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Lib/
H A Dpickle.py39 __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler",
73 class PickleError(Exception): class
77 class PicklingError(PickleError):
84 class UnpicklingError(PickleError):
1778 PickleError,
/third_party/python/Modules/
H A D_pickle.c155 PyObject *PickleError; member
213 Py_CLEAR(st->PickleError); in _Pickle_ClearState()
7922 Py_VISIT(st->PickleError); in pickle_traverse()
7989 st->PickleError = PyErr_NewException("_pickle.PickleError", NULL, NULL); in PyInit__pickle()
7990 if (st->PickleError == NULL) in PyInit__pickle()
7993 PyErr_NewException("_pickle.PicklingError", st->PickleError, NULL); in PyInit__pickle()
7997 PyErr_NewException("_pickle.UnpicklingError", st->PickleError, NULL); in PyInit__pickle()
8001 if (PyModule_AddObjectRef(m, "PickleError", st->PickleError) < in PyInit__pickle()
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dmessage_test.py1242 with self.assertRaises(pickle.PickleError) as _:
/third_party/python/Lib/test/
H A Dpickletester.py3014 with self.assertRaises(pickle.PickleError):

Completed in 22 milliseconds