CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
modified.py19 linesDownload Raw Back to setuptools
1try:2    # Ensure a DistutilsError raised by these methods is the same as distutils.errors.DistutilsError3    from distutils._modified import (4        newer,5        newer_group,6        newer_pairwise,7        newer_pairwise_group,8    )9except ImportError:10    # fallback for SETUPTOOLS_USE_DISTUTILS=stdlib, because _modified never existed in stdlib11    from ._distutils._modified import (12        newer,13        newer_group,14        newer_pairwise,15        newer_pairwise_group,16    )17 18__all__ = ['newer', 'newer_pairwise', 'newer_group', 'newer_pairwise_group']19 
Aluode/PerceptionLabPortable · CoolFace