summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-11-30 21:04:30 (GMT)
committerGitHub <noreply@github.com>2022-11-30 21:04:30 (GMT)
commit787764219f874ce2035699ed772af1e9f3bbf813 (patch)
treecad58073df5fba2f204c4633054ba6a91daf542e /Misc
parent9628136fac997847b4662e6a17faf06d2a0507eb (diff)
downloadcpython-787764219f874ce2035699ed772af1e9f3bbf813.zip
cpython-787764219f874ce2035699ed772af1e9f3bbf813.tar.gz
cpython-787764219f874ce2035699ed772af1e9f3bbf813.tar.bz2
gh-89189: More compact range iterator (GH-27986)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-08-29-15-55-19.bpo-45026.z7nTA3.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-29-15-55-19.bpo-45026.z7nTA3.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-29-15-55-19.bpo-45026.z7nTA3.rst
new file mode 100644
index 0000000..481ab53
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-29-15-55-19.bpo-45026.z7nTA3.rst
@@ -0,0 +1,3 @@
+Optimize the :class:`range` object iterator. It is now smaller, faster
+iteration of ranges containing large numbers. Smaller pickles, faster
+unpickling.