aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/dep_util.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-05-15 06:13:10 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-05-15 06:13:10 -0400
commit619e229c9777f0ee0851d8c5c94caaad7d89d434 (patch)
tree2013eec1df4def402792a3b932d904b714b7e493 /setuptools/dep_util.py
parentb0657c80db7891a9eca038199d5d4c2e2bafed03 (diff)
parente04c75ab906caadff4609ef34de8973c8e92eff8 (diff)
downloadexternal_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.tar.gz
external_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.tar.bz2
external_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.zip
Merge branch 'master' into docs/setup.cfg-only
Diffstat (limited to 'setuptools/dep_util.py')
-rw-r--r--setuptools/dep_util.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/dep_util.py b/setuptools/dep_util.py
index 2931c13e..521eb716 100644
--- a/setuptools/dep_util.py
+++ b/setuptools/dep_util.py
@@ -1,5 +1,6 @@
from distutils.dep_util import newer_group
+
# yes, this is was almost entirely copy-pasted from
# 'newer_pairwise()', this is just another convenience
# function.
@@ -10,7 +11,8 @@ def newer_pairwise_group(sources_groups, targets):
of 'newer_group()'.
"""
if len(sources_groups) != len(targets):
- raise ValueError("'sources_group' and 'targets' must be the same length")
+ raise ValueError(
+ "'sources_group' and 'targets' must be the same length")
# build a pair of lists (sources_groups, targets) where source is newer
n_sources = []