Files
dicom2pacs/dist/dicom2pacs.app/Contents/Resources/lib/python3.13/setuptools/modified.py
René Mathieu 0fef8d96c5 Initial commit
2026-01-17 13:49:51 +01:00

19 lines
568 B
Python
Executable File

try:
# Ensure a DistutilsError raised by these methods is the same as distutils.errors.DistutilsError
from distutils._modified import (
newer,
newer_group,
newer_pairwise,
newer_pairwise_group,
)
except ImportError:
# fallback for SETUPTOOLS_USE_DISTUTILS=stdlib, because _modified never existed in stdlib
from ._distutils._modified import (
newer,
newer_group,
newer_pairwise,
newer_pairwise_group,
)
__all__ = ['newer', 'newer_pairwise', 'newer_group', 'newer_pairwise_group']