Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

argparse uses per default abbreviation in unambiguous cases.

I don't want abbreviation and I'd like to disable it. But didn't find it in the documentation.

Is it possible?

Example:

import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--send', action='store_true')
parser.parse_args(['--se']) # returns Namespace(send=True)

But I want it only to be true when the full parameter is supplied. To prevent user errors.

UPDATE:

I created a ticket at python bugtracker after Vikas answer. And it already has been processed.

share|improve this question

2 Answers

up vote 1 down vote accepted

No, well not without ugly hacks.

The code snippet @Vladimir posted, i suppose that is not what you are looking for. The actual code that is doing this is:

def _get_option_tuples(self, option_string):
    ...
    if option_string.startswith(option_prefix):
    ...

See the check is startswith not ==.

And you can always extend argparse.ArgumentParser to provide your own _get_option_tuples(self, option_string) to change this behavior. I just did by replacing two occurrence of option_string.startswith(option_prefix) to option_string == option_prefix and:

>>> parser = my_argparse.MyArgparse
>>> parser = my_argparse.MyArgparse()
>>> parser.add_argument('--send', action='store_true')
_StoreTrueAction(option_strings=['--send'], dest='send', nargs=0, const=True, default=False, type=None, choices=None, help=None, metavar=None)
>>> parser.parse_args(['--se'])
usage: [-h] [--send]
: error: unrecognized arguments: --se

A word of caution

The method _get_option_tuples is prefixed with _, which typically means a private method in python. And it is not a good idea to override a private.

share|improve this answer
yes this was what i was looking for. thx – Jens Jaehrig May 25 '12 at 10:50

No, apparently this is not possible. At least in Python 2.7.2.

First, I took a look into the documentation - to no avail.

Then I opened the Lib\argparse.py and looked through the source code. Omitting a lot of details, it seems that each argument is parsed by a regular expression like this (argparse:2152):

    # allow one or more arguments
    elif nargs == ONE_OR_MORE:
        nargs_pattern = '(-*A[A-]*)'

This regex will successfully parse both '-' and '--', so we have no control over the short and long arguments. Other regexes use the -* construct too, so it does not depend on the type of the parameter (no sub-arguments, 1 sub-argument etc).

Later in the code double dashes are converted to one dash (only for non-optional args), again, without any flags to control by user:

    # if this is an optional action, -- is not allowed
    if action.option_strings:
        nargs_pattern = nargs_pattern.replace('-*', '')
        nargs_pattern = nargs_pattern.replace('-', '')
share|improve this answer
1  
Nice research :) – Maria Zverina May 25 '12 at 8:45
I dont think the problem has anything to do with short and long options. – Vikas May 25 '12 at 8:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.