gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386)

This commit is contained in:
Serhiy Storchaka 2023-07-29 08:48:10 +03:00 committed by GitHub
parent 413ba8943e
commit f2d07d3289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 125 additions and 139 deletions

View file

@ -11,6 +11,12 @@ creation and deletion functions don't apply to booleans. The following macros
are available, however.
.. c:var:: PyTypeObject PyBool_Type
This instance of :c:type:`PyTypeObject` represents the Python boolean type; it
is the same object as :class:`bool` in the Python layer.
.. c:function:: int PyBool_Check(PyObject *o)
Return true if *o* is of type :c:data:`PyBool_Type`. This function always