diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-28 18:09:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-28 18:09:29 (GMT) |
commit | cd986e903176d28ed795f65ba14e6fcbf2a65e3d (patch) | |
tree | bcd39aa3388e4d74b01371a7ba6d4067a3ae3c75 /Misc | |
parent | 8aa64cc45bff516a6db1f3a3c037cbcce9417fea (diff) | |
download | cpython-cd986e903176d28ed795f65ba14e6fcbf2a65e3d.zip cpython-cd986e903176d28ed795f65ba14e6fcbf2a65e3d.tar.gz cpython-cd986e903176d28ed795f65ba14e6fcbf2a65e3d.tar.bz2 |
bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
(cherry picked from commit 94a3d2a6329ab7941e93ad2f5bcbb8af2b8b80d2)
Co-authored-by: chilaxan <chilaxan@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-26-18-44-03.bpo-45018.pu8H9L.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-26-18-44-03.bpo-45018.pu8H9L.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-26-18-44-03.bpo-45018.pu8H9L.rst new file mode 100644 index 0000000..5bf13ef --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-26-18-44-03.bpo-45018.pu8H9L.rst @@ -0,0 +1 @@ +Fixed pickling of range iterators that iterated for over 2**32 times. |