summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-16 11:53:02 (GMT)
committerGitHub <noreply@github.com>2024-01-16 11:53:02 (GMT)
commit045adb1ad893ce350ac40e180da44523d03361a0 (patch)
treebca21e3ebf0b89e82e6fa42d8d447fbac6ff8818 /Misc
parent2b025793e122717d5b021f33079e632d54cf6052 (diff)
downloadcpython-045adb1ad893ce350ac40e180da44523d03361a0.zip
cpython-045adb1ad893ce350ac40e180da44523d03361a0.tar.gz
cpython-045adb1ad893ce350ac40e180da44523d03361a0.tar.bz2
[3.12] gh-114077: Fix OverflowError in socket.sendfile() when pass count >2GiB (GH-114079) (GH-114110)
(cherry picked from commit d4dfad2aa9e76038302b0c5a29ebacc2723ed50d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-01-15-12-12-54.gh-issue-114077.KcVnfj.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-15-12-12-54.gh-issue-114077.KcVnfj.rst b/Misc/NEWS.d/next/Library/2024-01-15-12-12-54.gh-issue-114077.KcVnfj.rst
new file mode 100644
index 0000000..dba086f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-01-15-12-12-54.gh-issue-114077.KcVnfj.rst
@@ -0,0 +1,2 @@
+Fix possible :exc:`OverflowError` in :meth:`socket.socket.sendfile` when pass
+*count* larger than 2 GiB on 32-bit platform.