0

prog -h当用户在 python 中调用时,我想在选项之后添加一个示例部分。

我已经搜索了optparse.OptionParser文档和一般的 Internet,但没有找到任何帮助。

当前copy-task-branch -h输出的内容:

Usage
=====
  copy-task-branch [options] source destination
Options
=======
-h, --help              show this help message and exit
-f, --force             Force rewrite of existing branches.
-r REVISION, --revision=REVISION
                        Use specific codeline revision (will not override using @ on source).

我想要的(或接近的东西):

Usage
=====
  copy-task-branch [options] source destination
Options
=======
-h, --help              show this help message and exit
-f, --force             Force rewrite of existing branches.
-r REVISION, --revision=REVISION
                        Use specific codeline revision (will not override using @ on source).
Examples
========
  copy-task-branch stable/next stable/topic1

这样的事情可能吗?

4

1 回答 1

1

您可以通过将epilog参数传递给OptionParser类来获得它。

epilog : string
    paragraph of help text to print after option help
于 2013-08-15T23:00:55.637 回答