sys.stdout.write(self.main_help_text(commands_only=True) + '\n')
时间: 2023-02-11 08:51:56 浏览: 138
sys.stdout.write(self.main_help_text(commands_only=True)) 这段代码是在调用一个对象的main_help_text()方法,并将输出写入标准输出流(stdout)。commands_only=True 参数表示只输出命令部分的帮助信息。
阅读全文