diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 10:44:25 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-10 10:44:25 (GMT) |
commit | 84835ab1cb2a8ccfeeb4474d39130d972a3c563d (patch) | |
tree | 20902bead4bcb320b8def5259b3c4f239e9251ba /Doc/c-api | |
parent | f26441609310c12826fe4b5bc896aafafa268763 (diff) | |
parent | d21e0b52f1421e253ecdc583faf5743133cac605 (diff) | |
download | cpython-84835ab1cb2a8ccfeeb4474d39130d972a3c563d.zip cpython-84835ab1cb2a8ccfeeb4474d39130d972a3c563d.tar.gz cpython-84835ab1cb2a8ccfeeb4474d39130d972a3c563d.tar.bz2 |
Issue #25161: Merge full stops from 3.4 into 3.5
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 3ab073b..1efbae4 100644 --- a/Doc/c-api/gen.rst +++ b/Doc/c-api/gen.rst @@ -17,7 +17,7 @@ than explicitly calling :c:func:`PyGen_New` or :c:func:`PyGen_NewWithQualName`. .. c:var:: PyTypeObject PyGen_Type - The type object corresponding to generator objects + The type object corresponding to generator objects. .. c:function:: int PyGen_Check(PyObject *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) |