commit | 57dd79e6f7f33bb4e6817ac58c9cb91de99675e0 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Wed Dec 19 15:31:40 2018 +0200 |
committer | GitHub <noreply@github.com> | Wed Dec 19 15:31:40 2018 +0200 |
tree | 7c8885af8150d77264edd3fc6ac2e0fe4ea482bb | |
parent | bf99bcf56c8b4e97b2737f9e751a563b625430ec [diff] [blame] |
Fix documented signatures for C API functions. (GH-11236)
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst index a66832c..20bf9f0 100644 --- a/Doc/c-api/tuple.rst +++ b/Doc/c-api/tuple.rst
@@ -209,7 +209,7 @@ This function "steals" a reference to *o*. -.. c:function:: PyObject* PyStructSequence_SET_ITEM(PyObject *p, Py_ssize_t *pos, PyObject *o) +.. c:function:: void PyStructSequence_SET_ITEM(PyObject *p, Py_ssize_t *pos, PyObject *o) Macro equivalent of :c:func:`PyStructSequence_SetItem`.