Searched refs:sub_commands (Results 1 - 12 of 12) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
H A Dbuild.py143 sub_commands = [('build_py', has_pure_modules), variable in class:build
H A Dregister.py30 sub_commands = [('check', lambda self: True)] variable in class:register
H A Dsdist.py100 sub_commands = [('check', checking_metadata)] variable in class:sdist
H A Dinstall.py663 # 'sub_commands': a list of commands this command might have to run to
665 sub_commands = [('install_lib', has_lib), variable in class:install
/external/python/cpython3/Lib/distutils/command/
H A Dbuild.py153 sub_commands = [('build_py', has_pure_modules), variable in class:build
H A Dregister.py29 sub_commands = [('check', lambda self: True)] variable in class:register
H A Dsdist.py94 sub_commands = [('check', checking_metadata)] variable in class:sdist
H A Dinstall.py649 # 'sub_commands': a list of commands this command might have to run to
651 sub_commands = [('install_lib', has_lib), variable in class:install
/external/python/cpython3/Lib/distutils/tests/
H A Dtest_core.py43 sub_commands = _install.sub_commands + ['cmd']
98 self.assertIn('cmd', install.sub_commands)
/external/python/cpython2/Lib/distutils/
H A Dcmd.py30 # 'sub_commands' formalizes the notion of a "family" of commands,
33 # defines 'sub_commands' as a class attribute; it's a list of
41 # 'sub_commands' is usually defined at the *end* of a class, because
44 sub_commands = [] variable in class:Command
331 'sub_commands' class attribute: each tuple in that list may include
336 for (cmd_name, method) in self.sub_commands:
/external/python/cpython3/Lib/distutils/
H A Dcmd.py28 # 'sub_commands' formalizes the notion of a "family" of commands,
31 # defines 'sub_commands' as a class attribute; it's a list of
39 # 'sub_commands' is usually defined at the *end* of a class, because
42 sub_commands = [] variable in class:Command
318 'sub_commands' class attribute: each tuple in that list may include
323 for (cmd_name, method) in self.sub_commands:
/external/python/cpython3/
H A Dsetup.py2185 sub_commands = [('install_lib', install.has_lib), variable in class:PyBuildInstall

Completed in 961 milliseconds