Searched refs:command_obj (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/distutils/tests/ |
D | test_install_scripts.py | 19 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(
|
D | test_install.py | 42 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
|
D | test_bdist.py | 34 dist.command_obj['bdist'] = cmd
|
D | test_build_scripts.py | 47 dist.command_obj["build"] = support.DummyCommand(
|
D | test_build_py.py | 38 dist.command_obj["build"] = support.DummyCommand(
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_install_scripts.py | 19 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(
|
D | test_install.py | 43 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
|
D | test_bdist.py | 35 dist.command_obj['bdist'] = cmd
|
D | test_build_scripts.py | 47 dist.command_obj["build"] = support.DummyCommand(
|
D | test_build_py.py | 39 dist.command_obj["build"] = support.DummyCommand(
|
/external/python/cpython2/Lib/distutils/ |
D | dist.py | 215 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/ |
D | dist.py | 223 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 …]
|