/snap/core22/2437/usr/lib/python3/dist-packages/setuptools
NameSizeModeActions
command/-0755rm
extern/-0755rm
_distutils/-0755rm
_vendor/-0755rm
__pycache__/-0755rm
archive_util.py70770644editdlrm
build_meta.py105360644editdlrm
config.py231530644editdlrm
depends.py54990644editdlrm
dep_util.py9490644editdlrm
dist.py431620644editdlrm
errors.py15550644editdlrm
extension.py16840644editdlrm
glob.py48730644editdlrm
installer.py38240644editdlrm
launch.py8120644editdlrm
monkey.py52170644editdlrm
msvc.py505610644editdlrm
namespaces.py30930644editdlrm
package_index.py418720644editdlrm
py34compat.py2450644editdlrm
sandbox.py143480644editdlrm
script (dev).tmpl2180644editdlrm
script.tmpl1380644editdlrm
unicode_utils.py9410644editdlrm
version.py1440644editdlrm
wheel.py82880644editdlrm
windows_support.py7140644editdlrm
_deprecation_warning.py2180644editdlrm
_imp.py23920644editdlrm
__init__.py74480644editdlrm
Edit: /snap/core22/2437/usr/lib/python3/dist-packages/setuptools/dep_util.py (949B)
from distutils.dep_util import newer_group # yes, this is was almost entirely copy-pasted from # 'newer_pairwise()', this is just another convenience # function. def newer_pairwise_group(sources_groups, targets): """Walk both arguments in parallel, testing if each source group is newer than its corresponding target. Returns a pair of lists (sources_groups, targets) where sources is newer than target, according to the semantics of 'newer_group()'. """ if len(sources_groups) != len(targets): 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 = [] n_targets = [] for i in range(len(sources_groups)): if newer_group(sources_groups[i], targets[i]): n_sources.append(sources_groups[i]) n_targets.append(targets[i]) return n_sources, n_targets