mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
[3.13] Docs: Update PyExc_*
tables in the c-api documentation (GH-131640) (GH-135221)
Docs: Update `PyExc_*` tables in the c-api documentation (GH-131640)
Add `PyExc_BaseExceptionGroup` and `PyExc_EncodingWarning`
(cherry picked from commit f00512db20
)
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
This commit is contained in:
parent
f9c18bab7f
commit
b250035384
2 changed files with 14 additions and 0 deletions
|
@ -970,6 +970,7 @@ the variables:
|
|||
|
||||
.. index::
|
||||
single: PyExc_BaseException (C var)
|
||||
single: PyExc_BaseExceptionGroup (C var)
|
||||
single: PyExc_Exception (C var)
|
||||
single: PyExc_ArithmeticError (C var)
|
||||
single: PyExc_AssertionError (C var)
|
||||
|
@ -1029,6 +1030,8 @@ the variables:
|
|||
+=========================================+=================================+==========+
|
||||
| :c:data:`PyExc_BaseException` | :exc:`BaseException` | [1]_ |
|
||||
+-----------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_BaseExceptionGroup` | :exc:`BaseExceptionGroup` | [1]_ |
|
||||
+-----------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_Exception` | :exc:`Exception` | [1]_ |
|
||||
+-----------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_ArithmeticError` | :exc:`ArithmeticError` | [1]_ |
|
||||
|
@ -1152,6 +1155,9 @@ the variables:
|
|||
.. versionadded:: 3.6
|
||||
:c:data:`PyExc_ModuleNotFoundError`.
|
||||
|
||||
.. versionadded:: 3.11
|
||||
:c:data:`PyExc_BaseExceptionGroup`.
|
||||
|
||||
These are compatibility aliases to :c:data:`PyExc_OSError`:
|
||||
|
||||
.. index::
|
||||
|
@ -1195,6 +1201,7 @@ the variables:
|
|||
single: PyExc_Warning (C var)
|
||||
single: PyExc_BytesWarning (C var)
|
||||
single: PyExc_DeprecationWarning (C var)
|
||||
single: PyExc_EncodingWarning (C var)
|
||||
single: PyExc_FutureWarning (C var)
|
||||
single: PyExc_ImportWarning (C var)
|
||||
single: PyExc_PendingDeprecationWarning (C var)
|
||||
|
@ -1213,6 +1220,8 @@ the variables:
|
|||
+------------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_DeprecationWarning` | :exc:`DeprecationWarning` | |
|
||||
+------------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_EncodingWarning` | :exc:`EncodingWarning` | |
|
||||
+------------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_FutureWarning` | :exc:`FutureWarning` | |
|
||||
+------------------------------------------+---------------------------------+----------+
|
||||
| :c:data:`PyExc_ImportWarning` | :exc:`ImportWarning` | |
|
||||
|
@ -1233,6 +1242,9 @@ the variables:
|
|||
.. versionadded:: 3.2
|
||||
:c:data:`PyExc_ResourceWarning`.
|
||||
|
||||
.. versionadded:: 3.10
|
||||
:c:data:`PyExc_EncodingWarning`.
|
||||
|
||||
Notes:
|
||||
|
||||
.. [3]
|
||||
|
|
|
@ -226,6 +226,7 @@ nitpick_ignore += [
|
|||
('c:data', 'PyExc_AssertionError'),
|
||||
('c:data', 'PyExc_AttributeError'),
|
||||
('c:data', 'PyExc_BaseException'),
|
||||
('c:data', 'PyExc_BaseExceptionGroup'),
|
||||
('c:data', 'PyExc_BlockingIOError'),
|
||||
('c:data', 'PyExc_BrokenPipeError'),
|
||||
('c:data', 'PyExc_BufferError'),
|
||||
|
@ -279,6 +280,7 @@ nitpick_ignore += [
|
|||
# C API: Standard Python warning classes
|
||||
('c:data', 'PyExc_BytesWarning'),
|
||||
('c:data', 'PyExc_DeprecationWarning'),
|
||||
('c:data', 'PyExc_EncodingWarning'),
|
||||
('c:data', 'PyExc_FutureWarning'),
|
||||
('c:data', 'PyExc_ImportWarning'),
|
||||
('c:data', 'PyExc_PendingDeprecationWarning'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue