From c9566b8c454120e3d0ddb5ab970f262a6cd80077 Mon Sep 17 00:00:00 2001 From: Andre Delfino Date: Thu, 6 Dec 2018 18:06:55 -0300 Subject: [PATCH] Add missing period in distutils.dep_util.newer_group doc (GH-11003) --- Doc/distutils/apiref.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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