This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: argparse add_argument with action="store_true", type=bool should not crash
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.4, Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: dbagnall, moigagoo, nanjekyejoannah, paul.j3, r.david.murray
Priority: normal Keywords:

Created on 2015-07-30 09:56 by dbagnall, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
argparse-crash.py dbagnall, 2015-07-30 09:56 small test case
Messages (6)
msg247658 - (view) Author: Douglas Bagnall (dbagnall) * Date: 2015-07-30 09:56
A line like this:

    parser.add_argument('--hello', action="store_true", type=bool)

causes a TypeError in 2.7 and 3.4:

   File "/usr/lib/python3.4/argparse.py", line 1344, in add_argument
     action = action_class(**kwargs)

     TypeError: __init__() got an unexpected keyword argument 'type'

It shouldn't really.
msg247662 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2015-07-30 12:32
Looking at the source it appears that there are many actions for which it is not legal to also specify type.  That is, this looks like a design decision rather than a bug.
msg247936 - (view) Author: paul j3 (paul.j3) * (Python triager) Date: 2015-08-03 16:40
Right, the only arguments that a `store_true` Action class accepts are:

     option_strings, dest, default=False,required=False, help=None

parser.add_argument() massages its parameters a bit, and then uses the 'action' parameter to construct an Action subclass object with the other parameters.  Depending on their needs the subclasses may set various defaults or omit certain parameters. And without a catchall '**kwargs', the result of providing an omitted parameter is this error message.

For 'store_true', a 'type' parameter is superfluous.  It doesn't take any arguments (it sets 'nargs=0'), so there aren't any arguments to convert with the 'type' function.  It's the Action's own 'default' and 'const' that provide the required False and True values.

Also 'bool' is not a meaningful 'type' - for any Action class.  There isn't a function in Python converts a string to a boolean.  'bool()' does not do this.  Or rather, `bool(astr)' converts every string to True except the empty one.

I've seen this mistake before, assuming that 'type=bool' means 'I want the result to be a boolean'.  But the docs do say 

    type= can take any callable that takes a single string argument and returns the converted value:

'type=float' means 'use float(astr) to convert astr', not 'the argument should be a float'.

The documentation is not clear about what parameters are valid for each Action type.  It indicates, in bits and pieces, that some parameters are meaningful for certain actions, and not useful for others.  One (version) even takes a parameter that others don't.  But I haven't seen many bugs - here or on StackOverflow - where this is an issue.
msg247964 - (view) Author: Douglas Bagnall (dbagnall) * Date: 2015-08-03 23:06
Thanks paul.j3 and r.david.murray,

I see your points.

What led me to this was automatically generating command line options from a Gstreamer element, mapping
the Gstreamer property types to Python types. Then I special-cased the action="store_true" for the boolean ones and was surprised by the somewhat unclear error message.

As you suggest, paul.j3, "type" is in some ways an unfortunate choice of keyword for this, but it too late to change that.
msg248991 - (view) Author: Konstantin Molchanov (moigagoo) * Date: 2015-08-22 18:56
Although I agree that specifying type with store_true or store_false is unnecessary, this shouldn't really be an error like this. Why not just ignore type if it can't be utilized?

The error message implies the usage of add_argument is erroneous, however it is fully compatible with the spec give in the docs.

Alternatively, the docs should be updated.
msg349877 - (view) Author: Joannah Nanjekye (nanjekyejoannah) * (Python committer) Date: 2019-08-16 17:16
See issue25299 also.
History
Date User Action Args
2022-04-11 14:58:19adminsetgithub: 68942
2019-08-16 17:16:20nanjekyejoannahsetnosy: + nanjekyejoannah
messages: + msg349877
2015-08-22 18:56:21moigagoosetnosy: + moigagoo
messages: + msg248991
2015-08-04 02:40:03r.david.murraysetstage: resolved
2015-08-03 23:06:50dbagnallsetstatus: open -> closed
resolution: not a bug
messages: + msg247964
2015-08-03 16:40:32paul.j3setnosy: + paul.j3
messages: + msg247936
2015-07-30 12:32:41r.david.murraysetnosy: + r.david.murray
messages: + msg247662
2015-07-30 09:56:58dbagnallcreate