summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey B Kirpichev <skirpichev@gmail.com>2024-12-02 13:14:40 (GMT)
committerGitHub <noreply@github.com>2024-12-02 13:14:40 (GMT)
commit930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1 (patch)
tree2d18c93ee8a393461a580394912550d3bcd46cbd /Misc
parentc112de1da2d18e3b5c2ea30b0e409f18e574efd8 (diff)
downloadcpython-930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1.zip
cpython-930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1.tar.gz
cpython-930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1.tar.bz2
gh-126618: fix repr(itertools.count(sys.maxsize)) (#127048)
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-11-20-08-54-11.gh-issue-126618.ef_53g.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-20-08-54-11.gh-issue-126618.ef_53g.rst b/Misc/NEWS.d/next/Library/2024-11-20-08-54-11.gh-issue-126618.ef_53g.rst
new file mode 100644
index 0000000..7a0a7b7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-11-20-08-54-11.gh-issue-126618.ef_53g.rst
@@ -0,0 +1,2 @@
+Fix the representation of :class:`itertools.count` objects when the count
+value is :data:`sys.maxsize`.