Home
last modified time | relevance | path

Searched refs:get_command_class (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/distutils/
Ddist.py523 cmd_class = self.get_command_class(command)
645 klass = self.get_command_class(command)
706 klass = self.get_command_class(cmd)
772 klass = self.get_command_class(cmd)
794 def get_command_class(self, command): member in Distribution
845 klass = self.get_command_class(command)
/external/python/cpython3/Lib/distutils/
Ddist.py539 cmd_class = self.get_command_class(command)
659 klass = self.get_command_class(command)
720 klass = self.get_command_class(cmd)
785 klass = self.get_command_class(cmd)
807 def get_command_class(self, command): member in Distribution
857 klass = self.get_command_class(command)
/external/python/setuptools/setuptools/_distutils/
Ddist.py540 cmd_class = self.get_command_class(command)
660 klass = self.get_command_class(command)
721 klass = self.get_command_class(cmd)
786 klass = self.get_command_class(cmd)
808 def get_command_class(self, command): member in Distribution
858 klass = self.get_command_class(command)
/external/python/setuptools/setuptools/command/
Dinstall.py105 easy_install = self.distribution.get_command_class('easy_install')
/external/python/setuptools/setuptools/
Ddist.py925 def get_command_class(self, command): member in Distribution
936 return _Distribution.get_command_class(self, command)
1089 cmd_class = self.get_command_class(command)
/external/python/setuptools/setuptools/tests/
Dtest_sdist.py181 assert cmd.distribution.get_command_class('build_py') == CustomBuildPy