Merged
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -749,6 +749,16 @@ Exception Classes
.. versionadded:: 3.2


.. c:function:: int PyExceptionClass_Check(PyObject *ob)

Return non-zero if *ob* is an exception class, zero otherwise. This function always succeeds.


.. c:function:: const char *PyExceptionClass_Name(PyObject *ob)

Return :c:member:`~PyTypeObject.tp_name` of the exception class *ob*.


Exception Objects
=================

Expand Down
Loading