File tree 4 files changed +12
-0
lines changed
4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1004,6 +1004,7 @@ the variables:
1004
1004
single: PyExc_OverflowError (C var)
1005
1005
single: PyExc_PermissionError (C var)
1006
1006
single: PyExc_ProcessLookupError (C var)
1007
+ single: PyExc_PythonFinalizationError (C var)
1007
1008
single: PyExc_RecursionError (C var)
1008
1009
single: PyExc_ReferenceError (C var)
1009
1010
single: PyExc_RuntimeError (C var)
@@ -1096,6 +1097,8 @@ the variables:
1096
1097
+-----------------------------------------+---------------------------------+----------+
1097
1098
| :c:data:`PyExc_ProcessLookupError` | :exc:`ProcessLookupError` | |
1098
1099
+-----------------------------------------+---------------------------------+----------+
1100
+ | :c:data:`PyExc_PythonFinalizationError` | :exc:`PythonFinalizationError` | |
1101
+ +-----------------------------------------+---------------------------------+----------+
1099
1102
| :c:data:`PyExc_RecursionError` | :exc:`RecursionError` | |
1100
1103
+-----------------------------------------+---------------------------------+----------+
1101
1104
| :c:data:`PyExc_ReferenceError` | :exc:`ReferenceError` | |
Original file line number Diff line number Diff line change @@ -452,6 +452,8 @@ distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate.
452
452
Currently, ``-1`` corresponds to
453
453
``Py_ASNATIVEBYTES_NATIVE_ENDIAN | Py_ASNATIVEBYTES_UNSIGNED_BUFFER``.
454
454
455
+ .. c:namespace:: NULL
456
+
455
457
============================================= ======
456
458
Flag Value
457
459
============================================= ======
Original file line number Diff line number Diff line change @@ -421,6 +421,8 @@ The available slot types are:
421
421
422
422
Specifies one of the following values:
423
423
424
+ .. c:namespace:: NULL
425
+
424
426
.. c:macro:: Py_MOD_GIL_USED
425
427
426
428
The module depends on the presence of the global interpreter lock (GIL),
Original file line number Diff line number Diff line change 132
132
('c:func' , 'vsnprintf' ),
133
133
# Standard C types
134
134
('c:type' , 'FILE' ),
135
+ ('c:type' , 'int8_t' ),
136
+ ('c:type' , 'int16_t' ),
135
137
('c:type' , 'int32_t' ),
136
138
('c:type' , 'int64_t' ),
137
139
('c:type' , 'intmax_t' ),
142
144
('c:type' , 'ssize_t' ),
143
145
('c:type' , 'time_t' ),
144
146
('c:type' , 'uint8_t' ),
147
+ ('c:type' , 'uint16_t' ),
148
+ ('c:type' , 'uint32_t' ),
145
149
('c:type' , 'uint64_t' ),
146
150
('c:type' , 'uintmax_t' ),
147
151
('c:type' , 'uintptr_t' ),
244
248
('c:data' , 'PyExc_OverflowError' ),
245
249
('c:data' , 'PyExc_PermissionError' ),
246
250
('c:data' , 'PyExc_ProcessLookupError' ),
251
+ ('c:data' , 'PyExc_PythonFinalizationError' ),
247
252
('c:data' , 'PyExc_RecursionError' ),
248
253
('c:data' , 'PyExc_ReferenceError' ),
249
254
('c:data' , 'PyExc_RuntimeError' ),
You can’t perform that action at this time.
0 commit comments