[Python-checkins] Add missing period in distutils.dep_util.newer_group doc (GH-11003)

Miss Islington (bot) webhook-mailer at python.org
Thu Dec 6 16:30:17 EST 2018


https://github.com/python/cpython/commit/72c71956cade606bd5500cf76d4d7c1d50a7ccae
commit: 72c71956cade606bd5500cf76d4d7c1d50a7ccae
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-12-06T13:30:13-08:00
summary:

Add missing period in distutils.dep_util.newer_group doc (GH-11003)

(cherry picked from commit c9566b8c454120e3d0ddb5ab970f262a6cd80077)

Co-authored-by: Andre Delfino <adelfino at gmail.com>

files:
M Doc/distutils/apiref.rst

diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst
index dccd7ce236cb..8efeffb6376e 100644
--- a/Doc/distutils/apiref.rst
+++ b/Doc/distutils/apiref.rst
@@ -941,7 +941,7 @@ timestamp dependency analysis.
 .. function:: newer_group(sources, target[, missing='error'])
 
    Return true if *target* is out-of-date with respect to any file listed in
-   *sources*  In other words, if *target* exists and is newer than every file in
+   *sources*.  In other words, if *target* exists and is newer than every file in
    *sources*, return false; otherwise return true. *missing* controls what we do
    when a source file is missing; the default (``'error'``) is to blow up with an
    :exc:`OSError` from  inside :func:`os.stat`; if it is ``'ignore'``, we silently



More information about the Python-checkins mailing list