Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork252
Open
Labels
Milestone
Description
I was testing around some things with theargparse module inbpython when suddenlybpython quit on me with error code 1. I tried to break the problem down and the code below seems to be the minimal reproducer:
$ bpythonbpython version 0.17.1 on top of Python 3.7.0 /usr/bin/python>>> import argparse>>> parser =argparse.ArgumentParser()>>> parser.add_argument('foo')_StoreAction(option_strings=[], dest='foo', nargs=None, const=None, default=None, type=None, choices=None, help=None, metavar=None)>>>parser.parse_args()usage: bpython [-h] foo>>>parser.parse_args()(2,)$echo$?1
The secondparser.parse_args() is not entered by me, but appears automatically on executing the firstparser.parse_args() line.