gh-119127: functools: Improve docs for partial and Placeholder (#124575)

This commit is contained in:
Jelle Zijlstra 2024-09-26 07:12:56 -07:00 committed by GitHub
parent 09aebb1fbc
commit cf2418076d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 15 deletions

View File

@ -354,7 +354,7 @@ The :mod:`functools` module defines the following functions:
newfunc.keywords = keywords newfunc.keywords = keywords
return newfunc return newfunc
The :func:`partial` function is used for partial function application which "freezes" The :func:`!partial` function is used for partial function application which "freezes"
some portion of a function's arguments and/or keywords resulting in a new object some portion of a function's arguments and/or keywords resulting in a new object
with a simplified signature. For example, :func:`partial` can be used to create with a simplified signature. For example, :func:`partial` can be used to create
a callable that behaves like the :func:`int` function where the *base* argument a callable that behaves like the :func:`int` function where the *base* argument
@ -368,10 +368,11 @@ The :mod:`functools` module defines the following functions:
18 18
If :data:`Placeholder` sentinels are present in *args*, they will be filled first If :data:`Placeholder` sentinels are present in *args*, they will be filled first
when :func:`partial` is called. This allows custom selection of positional arguments when :func:`!partial` is called. This makes it possible to pre-fill any positional
to be pre-filled when constructing a :ref:`partial object <partial-objects>`. argument with a call to :func:`!partial`; without :data:`!Placeholder`, only the
first positional argument can be pre-filled.
If :data:`!Placeholder` sentinels are present, all of them must be filled at call time: If any :data:`!Placeholder` sentinels are present, all must be filled at call time:
.. doctest:: .. doctest::
@ -379,14 +380,15 @@ The :mod:`functools` module defines the following functions:
>>> say_to_world('Hello', 'dear') >>> say_to_world('Hello', 'dear')
Hello dear world! Hello dear world!
Calling ``say_to_world('Hello')`` would raise a :exc:`TypeError`, because Calling ``say_to_world('Hello')`` raises a :exc:`TypeError`, because
only one positional argument is provided, while there are two placeholders only one positional argument is provided, but there are two placeholders
in :ref:`partial object <partial-objects>`. that must be filled in.
Successive :func:`partial` applications fill :data:`!Placeholder` sentinels If :func:`!partial` is applied to an existing :func:`!partial` object,
of the input :func:`partial` objects with new positional arguments. :data:`!Placeholder` sentinels of the input object are filled in with
A place for positional argument can be retained by inserting new new positional arguments.
:data:`!Placeholder` sentinel to the place held by previous :data:`!Placeholder`: A placeholder can be retained by inserting a new
:data:`!Placeholder` sentinel to the place held by a previous :data:`!Placeholder`:
.. doctest:: .. doctest::
@ -402,8 +404,8 @@ The :mod:`functools` module defines the following functions:
>>> remove_first_dear(message) >>> remove_first_dear(message)
'Hello, dear world!' 'Hello, dear world!'
Note, :data:`!Placeholder` has no special treatment when used for keyword :data:`!Placeholder` has no special treatment when used in a keyword
argument of :data:`!Placeholder`. argument to :func:`!partial`.
.. versionchanged:: 3.14 .. versionchanged:: 3.14
Added support for :data:`Placeholder` in positional arguments. Added support for :data:`Placeholder` in positional arguments.
@ -791,7 +793,7 @@ have three read-only attributes:
The keyword arguments that will be supplied when the :class:`partial` object is The keyword arguments that will be supplied when the :class:`partial` object is
called. called.
:class:`partial` objects are like :class:`function` objects in that they are :class:`partial` objects are like :ref:`function objects <user-defined-funcs>` in that they are
callable, weak referenceable, and can have attributes. There are some important callable, weak referenceable, and can have attributes. There are some important
differences. For instance, the :attr:`~definition.__name__` and :attr:`__doc__` attributes differences. For instance, the :attr:`~definition.__name__` and :attr:`~definition.__doc__` attributes
are not created automatically. are not created automatically.