Home | History | Annotate | Download | only in distutils

Lines Matching full:help_options

549         # Check for help_options in command class.  They have a different
551 if (hasattr(cmd_class, 'help_options') and
552 isinstance(cmd_class.help_options, list)):
553 help_options = fix_help_options(cmd_class.help_options)
555 help_options = []
562 help_options)
569 if (hasattr(cmd_class, 'help_options') and
570 isinstance(cmd_class.help_options, list)):
572 for (help_option, short, desc, func) in cmd_class.help_options:
646 if (hasattr(klass, 'help_options') and
647 isinstance(klass.help_options, list)):
649 fix_help_options(klass.help_options))
1243 """Convert a 4-tuple 'help_options' list as found in various command