bpo-33738: Address review comments in GH #7477 (GH-7585)

This commit is contained in:
Christian Tismer 2018-06-11 00:48:28 +02:00 committed by Ned Deily
parent 877b23202b
commit 8398713cea
5 changed files with 8 additions and 4 deletions

View file

@ -142,9 +142,9 @@ PyAPI_FUNC(void) _PyErr_ChainExceptions(PyObject *, PyObject *, PyObject *);
#ifndef Py_LIMITED_API
#define PyExceptionClass_Name(x) \
((char *)(((PyTypeObject*)(x))->tp_name))
((char *)(((PyTypeObject *)(x))->tp_name))
#else
PyAPI_FUNC(char *) PyExceptionClass_Name(PyObject*);
PyAPI_FUNC(const char *) PyExceptionClass_Name(PyObject *);
#endif
#define PyExceptionInstance_Class(x) ((PyObject*)((x)->ob_type))