Home
last modified time | relevance | path

Searched refs:command_options (Results 1 – 9 of 9) sorted by relevance

/external/python/setuptools/setuptools/
Dpy36compat.py58 if 'global' in self.command_options:
59 for (opt, (src, val)) in self.command_options['global'].items():
Dconfig.py51 dist, dist.command_options,
90 distribution, command_options, ignore_option_errors=False): argument
105 distribution.metadata, command_options, ignore_option_errors)
109 distribution, command_options, ignore_option_errors)
Ddist.py484 parse_configuration(self, self.command_options,
828 for cmd, opts in self.command_options.items():
/external/python/cpython2/Lib/distutils/
Ddist.py181 self.command_options = {}
295 dict = self.command_options.get(command)
297 dict = self.command_options[command] = {}
304 commands = self.command_options.keys()
316 opt_dict = self.command_options.get(cmd_name)
408 if 'global' in self.command_options:
409 for (opt, (src, val)) in self.command_options['global'].items():
854 options = self.command_options.get(command)
/external/python/cpython3/Lib/distutils/
Ddist.py189 self.command_options = {}
300 dict = self.command_options.get(command)
302 dict = self.command_options[command] = {}
309 commands = sorted(self.command_options.keys())
320 opt_dict = self.command_options.get(cmd_name)
424 if 'global' in self.command_options:
425 for (opt, (src, val)) in self.command_options['global'].items():
866 options = self.command_options.get(command)
/external/python/setuptools/setuptools/command/
Dsaveopts.py13 for cmd in dist.command_options:
/external/python/cpython3/Lib/distutils/tests/
Dtest_dist.py131 sorted(d.command_options.get('install').keys()),
134 for (key, value) in d.command_options.get('install').items():
142 self.assertNotIn(key, d.command_options.get('install', {}))
/external/python/cpython2/Lib/distutils/command/
Dregister.py42 self.distribution.command_options['check'] = check_options
/external/python/cpython3/Lib/distutils/command/
Dregister.py41 self.distribution.command_options['check'] = check_options