admin管理员组文章数量:1346195
What I have when creating a parser based off of cmd.cmd2 for a program here is the relevant code
parser = cmd2.argparse_custom.Cmd2ArgumentParser(description='open', add_help=False)
open_mission_args.add_argument(
'-o', '--open',
action='store',
type=str,
metavar='NAME',
default='',
dest='open',
help='create and open new mission'
)
Basically I want to set the name with running myprogram --open=<my_name>
for my name I have to have it support all names with alphanumeric characters, hyphens, and underscores. Everything works except myprogram --open=--
it is parsing this as []
I am assume it thinks I am starting a new argument is this a bug I thought the type=str,
argument took care of this.
Edit the only thing I can think of that would work is nargs=argparse.REMAINDER
but that would require post parsing which I don't want to do.
本文标签: pythonBug or intended behavior on cmd2argparsecustomCmd2ArgumentParser()Stack Overflow
版权声明:本文标题:python - Bug or intended behavior on cmd2.argparse_custom.Cmd2ArgumentParser() - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743822613a2545062.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论