mirror of
https://github.com/python/cpython.git
synced 2025-11-13 07:26:31 +00:00
#17296: backport fix for issue 1692335, naive exception pickling.
This commit is contained in:
parent
5f79409889
commit
1cb0cb2fcd
3 changed files with 28 additions and 2 deletions
|
|
@ -29,6 +29,12 @@ BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|||
self->dict = NULL;
|
||||
self->traceback = self->cause = self->context = NULL;
|
||||
|
||||
if (args) {
|
||||
self->args = args;
|
||||
Py_INCREF(args);
|
||||
return (PyObject *)self;
|
||||
}
|
||||
|
||||
self->args = PyTuple_New(0);
|
||||
if (!self->args) {
|
||||
Py_DECREF(self);
|
||||
|
|
@ -41,12 +47,15 @@ BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|||
static int
|
||||
BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds)
|
||||
{
|
||||
PyObject *tmp;
|
||||
|
||||
if (!_PyArg_NoKeywords(Py_TYPE(self)->tp_name, kwds))
|
||||
return -1;
|
||||
|
||||
Py_DECREF(self->args);
|
||||
tmp = self->args;
|
||||
self->args = args;
|
||||
Py_INCREF(self->args);
|
||||
Py_XDECREF(tmp);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue