]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix wording in Functional Programming HOWTO (GH-98939)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 1 Nov 2022 02:57:42 +0000 (19:57 -0700)
committerGitHub <noreply@github.com>
Tue, 1 Nov 2022 02:57:42 +0000 (19:57 -0700)
(cherry picked from commit f4d56292e943e822abf68f3c210ccf6b88c587ac)

Co-authored-by: partev <petrosyan@gmail.com>
Doc/howto/functional.rst

index 1c3bd23f9fee6d0da2d36fa3320f762b59a6b124..e68bc2ebb1cc82c02169302db3b8e6f50c800cd5 100644 (file)
@@ -994,7 +994,7 @@ requesting iterator-2 and its corresponding key.
 The functools module
 ====================
 
-The :mod:`functools` module in Python 2.5 contains some higher-order functions.
+The :mod:`functools` module contains some higher-order functions.
 A **higher-order function** takes one or more functions as input and returns a
 new function.  The most useful tool in this module is the
 :func:`functools.partial` function.