Home
last modified time | relevance | path

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

/third_party/python/Lib/distutils/tests/
Dtest_install_scripts.py19 dist.command_obj["build"] = support.DummyCommand(
21 dist.command_obj["install"] = support.DummyCommand(
63 dist.command_obj["build"] = support.DummyCommand(build_scripts=source)
64 dist.command_obj["install"] = support.DummyCommand(
Dtest_install.py51 dist.command_obj["build"] = support.DummyCommand(
193 dist.command_obj['install'] = cmd
226 dist.command_obj['install'] = cmd
227 dist.command_obj['build_ext'] = buildextcmd
Dtest_bdist.py37 dist.command_obj['bdist'] = cmd
Dtest_build_scripts.py47 dist.command_obj["build"] = support.DummyCommand(
Dtest_build_py.py38 dist.command_obj["build"] = support.DummyCommand(
/third_party/python/Lib/distutils/
Ddist.py223 self.command_obj = {}
851 cmd_obj = self.command_obj.get(command)
858 cmd_obj = self.command_obj[command] = klass(self)
872 def _set_command_options(self, command_obj, option_dict=None): argument
881 command_name = command_obj.get_command_name()
893 for o in command_obj.boolean_options]
897 neg_opt = command_obj.negative_opt
904 setattr(command_obj, neg_opt[option], not strtobool(value))
906 setattr(command_obj, option, strtobool(value))
907 elif hasattr(command_obj, option):
[all …]