Home
last modified time | relevance | path

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

/external/python/setuptools/setuptools/command/
Dinstall.py122 install.sub_commands = (
123 [cmd for cmd in orig.install.sub_commands if cmd[0] not in install._nc] +
Dupload_docs.py52 sub_commands = [('build_sphinx', has_sphinx)] variable in upload_docs
/external/python/cpython3/Lib/distutils/
Dcmd.py42 sub_commands = [] variable in Command
323 for (cmd_name, method) in self.sub_commands:
/external/python/cpython2/Lib/distutils/
Dcmd.py44 sub_commands = [] variable in Command
336 for (cmd_name, method) in self.sub_commands:
/external/python/cpython2/Lib/distutils/command/
Dbuild.py143 sub_commands = [('build_py', has_pure_modules), variable in build
Dregister.py30 sub_commands = [('check', lambda self: True)] variable in register
Dsdist.py100 sub_commands = [('check', checking_metadata)] variable in sdist
Dinstall.py665 sub_commands = [('install_lib', has_lib), variable in install
/external/python/cpython3/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.py652 sub_commands = [('install_lib', has_lib), variable in install
/external/python/cpython3/Lib/distutils/tests/
Dtest_core.py98 self.assertIn('cmd', install.sub_commands)
/external/python/cpython3/Doc/distutils/
Dapiref.rst1791 .. attribute:: Command.sub_commands
1793 *sub_commands* formalizes the notion of a "family" of commands,
1796 *sub_commands* as a class attribute; it's a list of 2-tuples ``(command_name,
1804 *sub_commands* is usually defined at the *end* of a class, because
/external/python/cpython2/Doc/distutils/
Dapiref.rst1750 .. attribute:: Command.sub_commands
1752 *sub_commands* formalizes the notion of a "family" of commands,
1755 *sub_commands* as a class attribute; it's a list of 2-tuples ``(command_name,
1763 *sub_commands* is usually defined at the *end* of a class, because
/external/python/cpython3/
Dsetup.py2489 sub_commands = [('install_lib', install.has_lib), variable in PyBuildInstall