summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslateny <46876382+slateny@users.noreply.github.com>2022-04-30 22:14:38 (GMT)
committerGitHub <noreply@github.com>2022-04-30 22:14:38 (GMT)
commit5dcfb916c765d825b2e8372281d71d32316b41cf (patch)
tree6579b450fdc095efba98d89267d3e973f7b831bc
parentefb87b1090a21e1be8f5f4928349eb742fd17f4c (diff)
downloadcpython-5dcfb916c765d825b2e8372281d71d32316b41cf.zip
cpython-5dcfb916c765d825b2e8372281d71d32316b41cf.tar.gz
cpython-5dcfb916c765d825b2e8372281d71d32316b41cf.tar.bz2
gh-89253: Add 3.10 whatsnew section for itertools.pairwise (GH-91563)
#89253 [`pairwise()`](https://docs.python.org/3/library/itertools.html#itertools.pairwise) already has the 'new in python3.10' Automerge-Triggered-By: GH:rhettinger
-rw-r--r--Doc/whatsnew/3.10.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index dd01c88..f93523a 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -1223,6 +1223,12 @@ now call :func:`inspect.get_annotations` to retrieve annotations. This means
also now un-stringize stringized annotations.
(Contributed by Larry Hastings in :issue:`43817`.)
+itertools
+---------
+
+Add :func:`itertools.pairwise()`.
+(Contributed by Raymond Hettinger in :issue:`38200`.)
+
linecache
---------