New submission from r1kk3r :
I looked into changelog and the source code to see if the behavior was wanted
but I was not able to see the source of the issue.
import argparse
parser = argparse.ArgumentParser(allow_abbrev=True)
parser.add_argument('-o', type=str, required=True, dest=&
r1kk3r added the comment:
Another issue:
parser = argparse.ArgumentParser(allow_abbrev=False)
parser.add_argument('-verbose', type=int, required=True, dest="bla", help="bla")
known_args, rest_of_args = parser.parse_known_args(["-v", "-verbose=2&qu