diff options
Diffstat (limited to 'Objects/exceptions.c')
-rw-r--r-- | Objects/exceptions.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index b1d5d0b..aa9f516 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -189,6 +189,12 @@ static PyMethodDef BaseException_methods[] = { static PyObject * BaseException_getitem(PyBaseExceptionObject *self, Py_ssize_t index) { + if (Py_Py3kWarningFlag) { + if (PyErr_Warn(PyExc_DeprecationWarning, + "In 3.x, __getitem__ is not supported for exception " + "classes, use args attribute") == -1) + return NULL; + } return PySequence_GetItem(self->args, index); } @@ -196,6 +202,12 @@ static PyObject * BaseException_getslice(PyBaseExceptionObject *self, Py_ssize_t start, Py_ssize_t stop) { + if (Py_Py3kWarningFlag) { + if (PyErr_Warn(PyExc_DeprecationWarning, + "In 3.x, __getslice__ is not supported for exception " + "classes, use args attribute") == -1) + return NULL; + } return PySequence_GetSlice(self->args, start, stop); } |