Home
last modified time | relevance | path

Searched refs:has_ext_modules (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/distutils/command/
Dbuild.py146 def has_ext_modules(self): member in build
147 return self.distribution.has_ext_modules()
155 ('build_ext', has_ext_modules),
Dinstall_lib.py106 if self.distribution.has_ext_modules():
195 self._mutate_outputs(self.distribution.has_ext_modules(),
213 if self.distribution.has_ext_modules():
Dbdist_dumb.py100 if (self.distribution.has_ext_modules() and
115 if self.distribution.has_ext_modules():
Dbdist_rpm.py205 if not self.distribution.has_ext_modules():
365 if self.distribution.has_ext_modules():
448 if not self.distribution.has_ext_modules():
Dbdist_msi.py152 if (not self.target_version) and self.distribution.has_ext_modules():
157 if not self.skip_build and self.distribution.has_ext_modules()\
198 if self.distribution.has_ext_modules():
Dsdist.py310 if self.distribution.has_ext_modules():
Dinstall.py655 self.distribution.has_ext_modules())
/third_party/python/Lib/distutils/
Ddist.py993 def has_ext_modules(self): member in Distribution
1000 return self.has_pure_modules() or self.has_ext_modules()
1013 not self.has_ext_modules() and
/third_party/PyYAML/
Dsetup.py131 def has_ext_modules(self): member in Distribution