mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)
Replace all *NULL* with ``NULL``.
This commit is contained in:
parent
da6ce58dd5
commit
25fc088607
55 changed files with 728 additions and 728 deletions
|
@ -60,17 +60,17 @@ Type-check macros:
|
|||
.. c:function:: int PyContext_CheckExact(PyObject *o)
|
||||
|
||||
Return true if *o* is of type :c:data:`PyContext_Type`. *o* must not be
|
||||
*NULL*. This function always succeeds.
|
||||
``NULL``. This function always succeeds.
|
||||
|
||||
.. c:function:: int PyContextVar_CheckExact(PyObject *o)
|
||||
|
||||
Return true if *o* is of type :c:data:`PyContextVar_Type`. *o* must not be
|
||||
*NULL*. This function always succeeds.
|
||||
``NULL``. This function always succeeds.
|
||||
|
||||
.. c:function:: int PyContextToken_CheckExact(PyObject *o)
|
||||
|
||||
Return true if *o* is of type :c:data:`PyContextToken_Type`.
|
||||
*o* must not be *NULL*. This function always succeeds.
|
||||
*o* must not be ``NULL``. This function always succeeds.
|
||||
|
||||
|
||||
Context object management functions:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue