Searched refs:sub_commands (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/distutils/ |
D | cmd.py | 42 sub_commands = [] variable in Command 323 for (cmd_name, method) in self.sub_commands:
|
/third_party/python/Lib/distutils/command/ |
D | build.py | 153 sub_commands = [('build_py', has_pure_modules), variable in build
|
D | register.py | 29 sub_commands = [('check', lambda self: True)] variable in register
|
D | sdist.py | 97 sub_commands = [('check', checking_metadata)] variable in sdist
|
D | install.py | 674 sub_commands = [('install_lib', has_lib), variable in install
|
/third_party/python/Lib/distutils/tests/ |
D | test_core.py | 98 self.assertIn('cmd', install.sub_commands)
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 1796 .. attribute:: Command.sub_commands 1798 *sub_commands* formalizes the notion of a "family" of commands, 1801 *sub_commands* as a class attribute; it's a list of 2-tuples ``(command_name, 1809 *sub_commands* is usually defined at the *end* of a class, because
|
/third_party/python/ |
D | setup.py | 2644 sub_commands = [('install_lib', install.has_lib), variable in PyBuildInstall
|