Home
last modified time | relevance | path

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

/external/python/cpython3/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.py42 dist.command_obj["build"] = support.DummyCommand(
181 dist.command_obj['install'] = cmd
214 dist.command_obj['install'] = cmd
215 dist.command_obj['build_ext'] = buildextcmd
Dtest_bdist.py34 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(
/external/python/cpython2/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.py43 dist.command_obj["build"] = support.DummyCommand(
183 dist.command_obj['install'] = cmd
212 dist.command_obj['install'] = cmd
213 dist.command_obj['build_ext'] = buildextcmd
Dtest_bdist.py35 dist.command_obj['bdist'] = cmd
Dtest_build_scripts.py47 dist.command_obj["build"] = support.DummyCommand(
Dtest_build_py.py39 dist.command_obj["build"] = support.DummyCommand(
/external/python/cpython2/Lib/distutils/
Ddist.py215 self.command_obj = {}
839 cmd_obj = self.command_obj.get(command)
846 cmd_obj = self.command_obj[command] = klass(self)
860 def _set_command_options(self, command_obj, option_dict=None): argument
869 command_name = command_obj.get_command_name()
880 bool_opts = map(translate_longopt, command_obj.boolean_options)
884 neg_opt = command_obj.negative_opt
891 setattr(command_obj, neg_opt[option], not strtobool(value))
893 setattr(command_obj, option, strtobool(value))
894 elif hasattr(command_obj, option):
[all …]
/external/python/cpython3/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 …]