From 5dddfb304adbdef9e5ee484782bd93bbd451f47a Mon Sep 17 00:00:00 2001 From: slateny <46876382+slateny@users.noreply.github.com> Date: Fri, 15 Apr 2022 00:04:59 -0700 Subject: [PATCH 1/2] Add 3.10 whatsnew section for itertools.pairwise --- Doc/whatsnew/3.10.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index dd01c88d8ae6660..d5e5b547dbf1abc 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 Brett Cannon in :issue:`38200`.) + linecache --------- From 62525ce0a1879bb2321a0688f00f3ebd509cbc30 Mon Sep 17 00:00:00 2001 From: slateny <46876382+slateny@users.noreply.github.com> Date: Sat, 16 Apr 2022 13:47:04 -0700 Subject: [PATCH 2/2] Use correct author --- Doc/whatsnew/3.10.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index d5e5b547dbf1abc..f93523a4c50a891 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1227,7 +1227,7 @@ itertools --------- Add :func:`itertools.pairwise()`. -(Contributed by Brett Cannon in :issue:`38200`.) +(Contributed by Raymond Hettinger in :issue:`38200`.) linecache ---------