Home
last modified time | relevance | path

Searched refs:sub_commands (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/distutils/
Dcmd.py42 sub_commands = [] variable in Command
323 for (cmd_name, method) in self.sub_commands:
/third_party/python/Lib/distutils/command/
Dbuild.py153 sub_commands = [('build_py', has_pure_modules), variable in build
Dregister.py29 sub_commands = [('check', lambda self: True)] variable in register
Dsdist.py97 sub_commands = [('check', checking_metadata)] variable in sdist
Dinstall.py674 sub_commands = [('install_lib', has_lib), variable in install
/third_party/python/Lib/distutils/tests/
Dtest_core.py98 self.assertIn('cmd', install.sub_commands)
/third_party/python/Doc/distutils/
Dapiref.rst1796 .. 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/
Dsetup.py2644 sub_commands = [('install_lib', install.has_lib), variable in PyBuildInstall