bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)

This commit is contained in:
Hai Shi 2020-05-08 01:16:01 +08:00 committed by GitHub
parent a1d9e0accd
commit c068b53a0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 12 deletions

View file

@ -150,7 +150,7 @@ Implementing functions and methods
The function signature is::
PyObject *PyCFunction(PyObject *self,
PyObject *const *args);
PyObject *args);
.. c:type:: PyCFunctionWithKeywords
@ -159,7 +159,7 @@ Implementing functions and methods
The function signature is::
PyObject *PyCFunctionWithKeywords(PyObject *self,
PyObject *const *args,
PyObject *args,
PyObject *kwargs);