From b1edad14fa1cb3cebc84e06d53f81fea5ab82b33 Mon Sep 17 00:00:00 2001 From: furkanonder Date: Fri, 31 Mar 2023 13:45:07 +0300 Subject: [PATCH 1/3] Mention Author for GH-101264 (Make the slice object hashable) --- Doc/whatsnew/3.12.rst | 2 +- Misc/NEWS.d/3.12.0a6.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index e5bcfdecd9a487..9bcfa71c78ca99 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -190,7 +190,7 @@ Other Language Changes (Contributed by Nikita Sobolev in :gh:`100581`.) * :class:`slice` objects are now hashable, allowing them to be used as dict keys and - set items. (Contributed by Furkan Onder in :gh:`101264`.) + set items. (Contributed by Furkan Onder and Will Bradshaw in :gh:`101264`.) New Modules =========== diff --git a/Misc/NEWS.d/3.12.0a6.rst b/Misc/NEWS.d/3.12.0a6.rst index 2bcb4c8c854d4e..03ac414130835c 100644 --- a/Misc/NEWS.d/3.12.0a6.rst +++ b/Misc/NEWS.d/3.12.0a6.rst @@ -189,7 +189,7 @@ not just glibc. This fixes support for musl. .. nonce: _P5sMa .. section: Core and Builtins -Make the slice object hashable. +Make the slice object hashable. Patch by Furkan Onder and Will Bradshaw. .. From ee1821a7743a4a0b22d6feef7cad80953847a4df Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 31 Mar 2023 09:43:05 -0400 Subject: [PATCH 2/3] Update Doc/whatsnew/3.12.rst --- Doc/whatsnew/3.12.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 9bcfa71c78ca99..00a51ab3c137c5 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -190,7 +190,7 @@ Other Language Changes (Contributed by Nikita Sobolev in :gh:`100581`.) * :class:`slice` objects are now hashable, allowing them to be used as dict keys and - set items. (Contributed by Furkan Onder and Will Bradshaw in :gh:`101264`.) + set items. (Contributed by Will Bradshaw and Furkan Onder in :gh:`101264`.) New Modules =========== From 5f4c26ba57b6d1719222e536ab3db5d54546b0e7 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 31 Mar 2023 09:43:14 -0400 Subject: [PATCH 3/3] Update Misc/NEWS.d/3.12.0a6.rst --- Misc/NEWS.d/3.12.0a6.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/3.12.0a6.rst b/Misc/NEWS.d/3.12.0a6.rst index 03ac414130835c..f6beb5b7ec3dbc 100644 --- a/Misc/NEWS.d/3.12.0a6.rst +++ b/Misc/NEWS.d/3.12.0a6.rst @@ -189,7 +189,7 @@ not just glibc. This fixes support for musl. .. nonce: _P5sMa .. section: Core and Builtins -Make the slice object hashable. Patch by Furkan Onder and Will Bradshaw. +Make the slice object hashable. Patch by Will Bradshaw and Furkan Onder. ..