bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)
diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst
index 72c9445..ea97e1e 100644
--- a/Doc/c-api/structures.rst
+++ b/Doc/c-api/structures.rst
@@ -150,7 +150,7 @@
The function signature is::
PyObject *PyCFunction(PyObject *self,
- PyObject *const *args);
+ PyObject *args);
.. c:type:: PyCFunctionWithKeywords
@@ -159,7 +159,7 @@
The function signature is::
PyObject *PyCFunctionWithKeywords(PyObject *self,
- PyObject *const *args,
+ PyObject *args,
PyObject *kwargs);