From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:14:45 +0000 (+0100) Subject: [3.14] Remove typo in ``functools.lru_cache`` docs (GH-140278) (#145628) X-Git-Tag: v3.14.4~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f25707ad830a7e79afb9711d273c97f318c8922;p=thirdparty%2FPython%2Fcpython.git [3.14] Remove typo in ``functools.lru_cache`` docs (GH-140278) (#145628) Co-authored-by: Brandon Hubacher --- diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index c07f637265c3..4babc246ea9d 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -190,7 +190,7 @@ The :mod:`!functools` module defines the following functions: Note, type specificity applies only to the function's immediate arguments rather than their contents. The scalar arguments, ``Decimal(42)`` and - ``Fraction(42)`` are be treated as distinct calls with distinct results. + ``Fraction(42)`` are treated as distinct calls with distinct results. In contrast, the tuple arguments ``('answer', Decimal(42))`` and ``('answer', Fraction(42))`` are treated as equivalent.