diff options
author | Sergey B Kirpichev <skirpichev@gmail.com> | 2024-12-02 13:14:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-02 13:14:40 (GMT) |
commit | 930ba0ce605eee9e3b992fa368b00a3f2b7dc4c1 (patch) | |
tree | 2d18c93ee8a393461a580394912550d3bcd46cbd /Misc | |
parent | c112de1da2d18e3b5c2ea30b0e409f18e574efd8 (diff) | |
download | cpython-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.rst | 2 |
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`. |