Home
last modified time | relevance | path

Searched refs:has_pure_modules (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
Dinstall_lib.py100 if outfiles is not None and self.distribution.has_pure_modules():
108 if self.distribution.has_pure_modules():
188 self._mutate_outputs(self.distribution.has_pure_modules(),
211 if self.distribution.has_pure_modules():
Dbuild.py131 def has_pure_modules (self): member in build
132 return self.distribution.has_pure_modules()
143 sub_commands = [('build_py', has_pure_modules),
Dsdist.py265 if self.distribution.has_pure_modules():
Dinstall.py650 return (self.distribution.has_pure_modules() or
/external/python/cpython3/Lib/distutils/command/
Dinstall_lib.py96 if outfiles is not None and self.distribution.has_pure_modules():
104 if self.distribution.has_pure_modules():
186 self._mutate_outputs(self.distribution.has_pure_modules(),
209 if self.distribution.has_pure_modules():
Dbuild.py140 def has_pure_modules(self): member in build
141 return self.distribution.has_pure_modules()
153 sub_commands = [('build_py', has_pure_modules),
Dsdist.py283 if self.distribution.has_pure_modules():
Dinstall.py632 return (self.distribution.has_pure_modules() or
/external/python/setuptools/setuptools/command/
Dpy36compat.py91 if self.distribution.has_pure_modules():
Dsdist.py126 if self.distribution.has_pure_modules():
/external/python/cpython2/Lib/distutils/
Ddist.py978 def has_pure_modules(self): member in Distribution
988 return self.has_pure_modules() or self.has_ext_modules()
1000 return (self.has_pure_modules() and
/external/python/cpython3/Lib/distutils/
Ddist.py990 def has_pure_modules(self): member in Distribution
1000 return self.has_pure_modules() or self.has_ext_modules()
1012 return (self.has_pure_modules() and