Searched refs:src_extensions (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/distutils/ |
D | bcppcompiler.py | 45 src_extensions = _c_extensions + _cpp_extensions variable in BCPPCompiler 343 if ext not in (self.src_extensions + ['.rc','.res']):
|
D | _msvccompiler.py | 191 src_extensions = (_c_extensions + _cpp_extensions + variable in MSVCCompiler 290 **{ext: self.obj_extension for ext in self.src_extensions},
|
D | msvccompiler.py | 221 src_extensions = (_c_extensions + _cpp_extensions + variable in MSVCCompiler 324 if ext not in self.src_extensions:
|
D | ccompiler.py | 63 src_extensions = None # list of strings variable in CCompiler 855 if ext not in self.src_extensions:
|
D | cygwinccompiler.py | 258 if ext not in (self.src_extensions + ['.rc','.res']):
|
D | msvc9compiler.py | 319 src_extensions = (_c_extensions + _cpp_extensions + variable in MSVCCompiler 436 if ext not in self.src_extensions:
|
D | unixccompiler.py | 74 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"] variable in UnixCCompiler
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 952 - if ext not in (self.src_extensions + ['.rc','.res']): 958 + if ext not in (self.src_extensions + ['.rc', '.res', '.mc']):
|