Lines Matching refs:positional
85 | | | values for positional or |
563 to it are positional-only. For more info, see
564 :ref:`the FAQ entry on positional-only parameters <faq-positional-only-arguments>`.
587 positional-only first, then positional-or-keyword, and that parameters with
621 Create a mapping from positional and keyword arguments to parameters.
713 | *POSITIONAL_ONLY* | Value must be supplied as a positional |
717 | | positional-only parameters, but many built-in|
723 | | positional argument (this is the standard |
727 | *VAR_POSITIONAL* | A tuple of positional arguments that aren't |
804 A tuple of positional arguments values. Dynamically computed from the
820 For variable-positional arguments (``*args``) the default is an
897 *args* is a list of the positional parameter names.
899 positional arguments are not accepted.
903 last *n* positional parameters, or ``None`` if there are no such defaults
915 positional-only arguments) that are sometimes encountered in extension module
1015 TypeError: f() missing 1 required positional argument: 'a'
1317 The code object has a variable positional parameter (``*args``-like).