Home
last modified time | relevance | path

Searched refs:cmd_class (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/distutils/
Ddist.py523 cmd_class = self.get_command_class(command)
529 if not issubclass(cmd_class, Command):
531 "command class %s must subclass Command" % cmd_class
535 if not (hasattr(cmd_class, 'user_options') and
536 isinstance(cmd_class.user_options, list)):
540 cmd_class
545 if hasattr(cmd_class, 'negative_opt'):
547 negative_opt.update(cmd_class.negative_opt)
551 if (hasattr(cmd_class, 'help_options') and
552 isinstance(cmd_class.help_options, list)):
[all …]
/external/python/cpython3/Lib/distutils/
Ddist.py539 cmd_class = self.get_command_class(command)
545 if not issubclass(cmd_class, Command):
547 "command class %s must subclass Command" % cmd_class)
551 if not (hasattr(cmd_class, 'user_options') and
552 isinstance(cmd_class.user_options, list)):
555 raise DistutilsClassError(msg % cmd_class)
560 if hasattr(cmd_class, 'negative_opt'):
562 negative_opt.update(cmd_class.negative_opt)
566 if (hasattr(cmd_class, 'help_options') and
567 isinstance(cmd_class.help_options, list)):
[all …]
/external/kernel-headers/original/uapi/linux/
Dwmi.h28 __u16 cmd_class; member
/external/python/setuptools/setuptools/
Ddist.py808 cmd_class = self.get_command_class(command)
809 if getattr(cmd_class, 'command_consumes_arguments', None):