Lines Matching refs:positional
56 positional arguments:
252 positional arguments:
267 positional arguments:
332 objects, collects all the positional and optional actions from them, and adds
437 positional arguments:
644 argument, like ``-f`` or ``--foo``, or a positional argument, like a list of
652 while a positional argument could be created like::
658 be positional::
834 it generally doesn't make much sense to have more than one positional argument
901 All optional arguments and some positional arguments may be omitted at the
926 For positional arguments with nargs_ equal to ``?`` or ``*``, the ``default`` value
1087 positional arguments:
1105 positional arguments:
1128 value as the "name" of each object. By default, for positional argument
1130 the dest_ value is uppercased. So, a single positional argument with
1143 positional arguments:
1160 positional arguments:
1193 :meth:`~ArgumentParser.add_argument`. For positional argument actions,
1239 Action class must accept the two positional arguments plus any keyword arguments
1262 is associated with a positional argument.
1331 wrong number of positional arguments, etc. When it encounters such an error,
1360 attempt to specify an option or an attempt to provide a positional argument.
1361 The :meth:`~ArgumentParser.parse_args` method is cautious here: positional
1369 >>> # no negative number options, so -1 is a positional argument
1373 >>> # no negative number options, so -1 and -5 are positional arguments
1395 If you have positional arguments that must begin with ``-`` and don't look
1397 :meth:`~ArgumentParser.parse_args` that everything after that is a positional
1509 positional arguments
1515 by default the name of the program and any positional arguments before the
1571 positional arguments:
1583 positional arguments:
1703 "positional arguments" and "optional arguments" when displaying help
1746 in the usual "positional arguments" and "optional arguments" sections.
1938 * Handling positional arguments.
1952 calls for the positional arguments. Keep in mind that what was previously
1956 by setting ``nargs`` of a positional argument to `argparse.REMAINDER`_, or