diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-06-15 08:09:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-15 08:09:43 (GMT) |
commit | ceeef10cdbc08561f9954e13bbed1cb2299a8c72 (patch) | |
tree | 8b4678e015343dc2f052c672d3a4be00ef313e0f /Include/pyerrors.h | |
parent | 08f127a3cad8ce4eb281d30d9488c91b0fd7cfed (diff) | |
download | cpython-ceeef10cdbc08561f9954e13bbed1cb2299a8c72.zip cpython-ceeef10cdbc08561f9954e13bbed1cb2299a8c72.tar.gz cpython-ceeef10cdbc08561f9954e13bbed1cb2299a8c72.tar.bz2 |
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 5b62658..416d750 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -140,10 +140,9 @@ PyAPI_FUNC(void) _PyErr_ChainExceptions(PyObject *, PyObject *, PyObject *); #define PyExceptionInstance_Check(x) \ PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS) -PyAPI_FUNC(char *) PyExceptionClass_Name(PyObject *); +PyAPI_FUNC(const char *) PyExceptionClass_Name(PyObject *); #ifndef Py_LIMITED_API -#define PyExceptionClass_Name(x) \ - ((char *)(((PyTypeObject *)(x))->tp_name)) +#define PyExceptionClass_Name(x) (((PyTypeObject*)(x))->tp_name) #endif #define PyExceptionInstance_Class(x) ((PyObject*)((x)->ob_type)) |