diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-11 11:51:02 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-11 11:51:02 (GMT) |
commit | a27b3b31927aaaf920d16609cc4470db389e7b67 (patch) | |
tree | 402e12f91c46dd6c99c4167ed420cf3b394ac53f /Doc | |
parent | 5b66723b0be684bc27414029ea3570c2400580f2 (diff) | |
parent | 9da31f7274472903a32407a4e8227d1f295672a6 (diff) | |
download | cpython-a27b3b31927aaaf920d16609cc4470db389e7b67.zip cpython-a27b3b31927aaaf920d16609cc4470db389e7b67.tar.gz cpython-a27b3b31927aaaf920d16609cc4470db389e7b67.tar.bz2 |
Issue #15657: Merge other doc fix from 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/structures.rst b/Doc/c-api/structures.rst index 3e8a90c..f481193 100644 --- a/Doc/c-api/structures.rst +++ b/Doc/c-api/structures.rst @@ -168,7 +168,7 @@ can be combined with a binding flag. Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`. The function expects three parameters: *self*, *args*, and a dictionary of - all the keyword arguments. The flag is typically combined with + all the keyword arguments. The flag must be combined with :const:`METH_VARARGS`, and the parameters are typically processed using :c:func:`PyArg_ParseTupleAndKeywords`. |