本文整理汇总了Python中optparse.IndentedHelpFormatter.format_description方法的典型用法代码示例。如果您正苦于以下问题:Python IndentedHelpFormatter.format_description方法的具体用法?Python IndentedHelpFormatter.format_description怎么用?Python IndentedHelpFormatter.format_description使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类optparse.IndentedHelpFormatter
的用法示例。
在下文中一共展示了IndentedHelpFormatter.format_description方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from optparse import IndentedHelpFormatter [as 别名]
# 或者: from optparse.IndentedHelpFormatter import format_description [as 别名]
def main():
options = [
Option('-d', '--dontcares', dest='dc', default='',
help='comma-separated don\'t-cares', metavar='D'),
Option('-o', '--ones', dest='ones', default='',
help='comma-separated ones', metavar='O'),
Option('-z', '--zeros', dest='zeros', default='',
help='comma-separated zeros', metavar='Z')
]
f = IndentedHelpFormatter()
def raw_format(s): return s + '\n'
f.format_description = raw_format
optparser = OptionParser(description=__doc__, formatter=f)
optparser.add_options(options)
opts, args = optparser.parse_args()
if len(sys.argv) == 1 or args:
optparser.print_help()
exit()
opts.dc = [int(i) for i in opts.dc.split(',') if i]
opts.ones = [int(i) for i in opts.ones.split(',') if i]
opts.zeros = [int(i) for i in opts.zeros.split(',') if i]
soln = qm(dc=opts.dc, ones=opts.ones, zeros=opts.zeros)
if len(soln) == 0:
sys.stdout.write('contradiction\n')
elif len(soln) == 1 and soln[0].count('X') == len(soln[0]):
sys.stdout.write('tautology\n')
else:
sys.stdout.write(' '.join(soln) + '\n')
示例2: format_description
# 需要导入模块: from optparse import IndentedHelpFormatter [as 别名]
# 或者: from optparse.IndentedHelpFormatter import format_description [as 别名]
def format_description(self, description):
if self.preformatted_description:
return description if description else ''
else:
return IndentedHelpFormatter.format_description(self, description)