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:
Serhiy Storchaka 2019-10-30 12:03:20 +02:00 committed by GitHub
parent da6ce58dd5
commit 25fc088607
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 728 additions and 728 deletions

View file

@ -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: