/external/python/setuptools/setuptools/command/ |
D | install.py | 122 install.sub_commands = ( 123 [cmd for cmd in orig.install.sub_commands if cmd[0] not in install._nc] +
|
D | upload_docs.py | 52 sub_commands = [('build_sphinx', has_sphinx)] variable in upload_docs
|
/external/python/cpython3/Lib/distutils/ |
D | cmd.py | 42 sub_commands = [] variable in Command 323 for (cmd_name, method) in self.sub_commands:
|
/external/python/cpython2/Lib/distutils/ |
D | cmd.py | 44 sub_commands = [] variable in Command 336 for (cmd_name, method) in self.sub_commands:
|
/external/python/cpython2/Lib/distutils/command/ |
D | build.py | 143 sub_commands = [('build_py', has_pure_modules), variable in build
|
D | register.py | 30 sub_commands = [('check', lambda self: True)] variable in register
|
D | sdist.py | 100 sub_commands = [('check', checking_metadata)] variable in sdist
|
D | install.py | 665 sub_commands = [('install_lib', has_lib), variable in install
|
/external/python/cpython3/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 | 652 sub_commands = [('install_lib', has_lib), variable in install
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_core.py | 98 self.assertIn('cmd', install.sub_commands)
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 1791 .. 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/ |
D | apiref.rst | 1750 .. 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/ |
D | setup.py | 2489 sub_commands = [('install_lib', install.has_lib), variable in PyBuildInstall
|