diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 10:36:22 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 10:36:22 (GMT) |
commit | d21e0b52f1421e253ecdc583faf5743133cac605 (patch) | |
tree | eba56801810249775eda33388a92bf6d3c8e69e0 /Doc/c-api | |
parent | cfad54344f570c1e833d92289ac571da7315b164 (diff) | |
download | cpython-d21e0b52f1421e253ecdc583faf5743133cac605.zip cpython-d21e0b52f1421e253ecdc583faf5743133cac605.tar.gz cpython-d21e0b52f1421e253ecdc583faf5743133cac605.tar.bz2 |
Issue #25161: Add full stops in documentation; patch by Takase Arihiro
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/code.rst | 2 | ||||
-rw-r--r-- | Doc/c-api/gen.rst | 2 | ||||
-rw-r--r-- | Doc/c-api/veryhigh.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/code.rst b/Doc/c-api/code.rst index 57e8072..9c93563 100644 --- a/Doc/c-api/code.rst +++ b/Doc/c-api/code.rst @@ -29,7 +29,7 @@ bound into a function. .. c:function:: int PyCode_Check(PyObject *co) - Return true if *co* is a :class:`code` object + Return true if *co* is a :class:`code` object. .. c:function:: int PyCode_GetNumFree(PyCodeObject *co) diff --git a/Doc/c-api/gen.rst b/Doc/c-api/gen.rst index 33cd27a..0c851a7 100644 --- a/Doc/c-api/gen.rst +++ b/Doc/c-api/gen.rst @@ -17,7 +17,7 @@ than explicitly calling :c:func:`PyGen_New`. .. c:var:: PyTypeObject PyGen_Type - The type object corresponding to generator objects + The type object corresponding to generator objects. .. c:function:: int PyGen_Check(ob) diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index f7ed4c7..f8aaf0f 100644 --- a/Doc/c-api/veryhigh.rst +++ b/Doc/c-api/veryhigh.rst @@ -201,7 +201,7 @@ the same library that the Python runtime is using. .. c:function:: struct _node* PyParser_SimpleParseFile(FILE *fp, const char *filename, int start) This is a simplified interface to :c:func:`PyParser_SimpleParseFileFlags` below, - leaving *flags* set to ``0`` + leaving *flags* set to ``0``. .. c:function:: struct _node* PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags) |