]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-128650: Fix incorrect statement in partial documentation (gh-128651)
authordgpb <3577712+dg-pb@users.noreply.github.com>
Thu, 9 Jan 2025 19:32:00 +0000 (21:32 +0200)
committerGitHub <noreply@github.com>
Thu, 9 Jan 2025 19:32:00 +0000 (13:32 -0600)
Doc/library/functools.rst

index 69d9d81c8481243ae7f92d767f0f3659fa42ec0d..8ad5f48c9e5286a740b0505d23baf57c8b51b2d6 100644 (file)
@@ -368,8 +368,8 @@ The :mod:`functools` module defines the following functions:
 
    If :data:`Placeholder` sentinels are present in *args*, they will be filled first
    when :func:`!partial` is called. This makes it possible to pre-fill any positional
-   argument with a call to :func:`!partial`; without :data:`!Placeholder`, only the
-   first positional argument can be pre-filled.
+   argument with a call to :func:`!partial`; without :data:`!Placeholder`,
+   only the chosen number of leading positional arguments can be pre-filled.
 
    If any :data:`!Placeholder` sentinels are present, all must be filled at call time: