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: Issue 15906 patch; positional with nargs='*' and string default
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.4, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bethard, chris.jerdonek, mblahay, paul.j3
Priority: normal Keywords:

Created on 2013-02-20 04:58 by paul.j3, last changed 2022-04-11 14:57 by admin.

Messages (4)
msg182469 - (view) Author: paul j3 (paul.j3) * (Python triager) Date: 2013-02-20 04:58
The production argparse applies the type conversion to a string default whether it is needed or not.  With the 12776 and 15906 patch, that conversion is postponed, so that it is applied only once.  However, for a positional argument with nargs='*', that conversion is never applied.

For example, with:
add_argument('foo', type=FileType('r'), default='anyfile', nargs='*')

the development version, with parse_args([]) produces
Namespace(foo='anyfile')

The previous code tested this default, raising an error if there was an IOError.  But even if it successfully opened the file, the namespace
 would get the string value, not the opened file.

With nargs = '?', the result is an IOError, or an opened file.

It is evident from the code (but not the documentation) that the best
default for the '*' positional is a list of appropriate type of objects.
In the case of FileTypes, about the only choices, without opening a
file, are: [] and [sys.stdin].
msg223057 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-07-14 20:38
Slipped under the radar?
msg223159 - (view) Author: paul j3 (paul.j3) * (Python triager) Date: 2014-07-15 23:51
Positionals with '*' are discussed in more detail in:

http://bugs.python.org/issue9625 - argparse: Problem with defaults for variable nargs when using choices

http://bugs.python.org/issue16878 - argparse: positional args with nargs='*' defaults to []

http://bugs.python.org/issue18943 - argparse: default args in mutually exclusive groups

I would suggest closing this issue, and refining the documentation patch in 16878 to note that a '*' positional default does not get evaluated.
msg343605 - (view) Author: Michael Blahay (mblahay) * Date: 2019-05-27 03:20
Also see https://bugs.python.org/issue35495
History
Date User Action Args
2022-04-11 14:57:42adminsetgithub: 61452
2019-05-27 03:20:17mblahaysetnosy: + mblahay
messages: + msg343605
2019-04-26 19:43:28BreamoreBoysetnosy: - BreamoreBoy
2014-07-15 23:51:21paul.j3setmessages: + msg223159
2014-07-14 20:38:09BreamoreBoysetnosy: + BreamoreBoy
messages: + msg223057
2013-02-20 05:04:05chris.jerdoneksetnosy: + bethard, chris.jerdonek
2013-02-20 04:58:17paul.j3create