CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
cygwinccompiler.py32 linesDownload Raw Back to _distutils
1from .compilers.C import cygwin2from .compilers.C.cygwin import (3    CONFIG_H_NOTOK,4    CONFIG_H_OK,5    CONFIG_H_UNCERTAIN,6    check_config_h,7    get_msvcr,8    is_cygwincc,9)10 11__all__ = [12    'CONFIG_H_NOTOK',13    'CONFIG_H_OK',14    'CONFIG_H_UNCERTAIN',15    'CygwinCCompiler',16    'Mingw32CCompiler',17    'check_config_h',18    'get_msvcr',19    'is_cygwincc',20]21 22 23CygwinCCompiler = cygwin.Compiler24Mingw32CCompiler = cygwin.MinGW32Compiler25 26 27get_versions = None28"""29A stand-in for the previous get_versions() function to prevent failures30when monkeypatched. See pypa/setuptools#2969.31"""32 
Aluode/PerceptionLabPortable · CoolFace