Re: Seen bug in argparse module

2016-06-24 Thread Peter Otten
Jagdish Choudhary wrote: > When argument provided from user which doesn't match to right option which > is mentioned in help , it runs without issue..let me provide an example > > https://docs.python.org/3.3/library/argparse.html > > import argparse > parser = argparse.ArgumentParser(description

Seen bug in argparse module

2016-06-24 Thread Jagdish Choudhary
Hi All, When argument provided from user which doesn't match to right option which is mentioned in help , it runs without issue..let me provide an example https://docs.python.org/3.3/library/argparse.html import argparse parser = argparse.ArgumentParser(description='Process some integers.')pars