Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/functools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,9 @@ The :mod:`!functools` module defines the following functions:
only one positional argument is provided, but there are two placeholders
that must be filled in.

If :func:`!partial` is applied to an existing :func:`!partial` object,
:data:`!Placeholder` sentinels of the input object are filled in with
new positional arguments.
If :func:`!partial` is applied to an existing
:ref:`partial object <partial-objects>`, :data:`!Placeholder` sentinels of the
input object are filled in with new positional arguments.
A placeholder can be retained by inserting a new
:data:`!Placeholder` sentinel to the place held by a previous :data:`!Placeholder`:

Expand Down
Loading