diff options
author | 2018-12-06 18:06:55 -0300 | |
---|---|---|
committer | 2018-12-06 13:06:55 -0800 | |
commit | c9566b8c454120e3d0ddb5ab970f262a6cd80077 (patch) | |
tree | 4cc5f957ea2cb9d92d40043104ef4ff8ca39cc30 /Doc/distutils | |
parent | Clarify expectedFailure in the unittest docs. (#10953) (diff) | |
download | cpython-c9566b8c454120e3d0ddb5ab970f262a6cd80077.tar.gz cpython-c9566b8c454120e3d0ddb5ab970f262a6cd80077.tar.bz2 cpython-c9566b8c454120e3d0ddb5ab970f262a6cd80077.zip |
Add missing period in distutils.dep_util.newer_group doc (GH-11003)
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index b10b39ae22a..a825efc1a67 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 |