Lines Matching refs:positional
88 | | | values for positional or |
180 | | co_posonlyargcount| number of positional only |
603 to it are positional-only. For more info, see
604 :ref:`the FAQ entry on positional-only parameters <faq-positional-only-arguments>`.
630 positional-only first, then positional-or-keyword, and that parameters with
664 Create a mapping from positional and keyword arguments to parameters.
760 | *POSITIONAL_ONLY* | Value must be supplied as a positional |
766 | | positional argument (this is the standard |
770 | *VAR_POSITIONAL* | A tuple of positional arguments that aren't |
812 positional or keyword
813 positional or keyword
869 A tuple of positional arguments values. Dynamically computed from the
885 For variable-positional arguments (``*args``) the default is an
962 *args* is a list of the positional parameter names.
964 positional arguments are not accepted.
968 last *n* positional parameters, or ``None`` if there are no such defaults
980 positional-only arguments) that are sometimes encountered in extension module
1080 TypeError: f() missing 1 required positional argument: 'a'
1438 The code object has a variable positional parameter (``*args``-like).