mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-33738: Address review comments in GH #7477 (GH-7585)
This commit is contained in:
parent
877b23202b
commit
8398713cea
5 changed files with 8 additions and 4 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue