def get_sub_commands(self): super_cmds = du_build.get_sub_commands(self) my_cmds = [ BuildProductionResourcesCommand.command_name, BuildMessagesCommand.command_name, ] return my_cmds + super_cmds
def get_sub_commands(self): # Force "build_ext" invocation. commands = build.get_sub_commands(self) for c in commands: if c == 'build_ext': return commands return ['build_ext'] + commands
def get_sub_commands(self): # Force "build_clib"/"build_ext" invocation. commands = build.get_sub_commands(self) if 'build_ext' not in commands: commands.insert(0, 'build_ext') if 'build_clib' not in commands: commands.insert(0, 'build_clib') return commands
def get_sub_commands(self): sub_commands = _build.get_sub_commands(self) print sub_commands return [ ('compile_catalog', None), ] + sub_commands
def get_sub_commands(self): return _build.get_sub_commands(self) + ["build_doc"]
def get_sub_commands(self): sub_commands = _build.get_sub_commands(self) print sub_commands return [('compile_catalog', None), ] + sub_commands