summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-02 15:20:48 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-04-02 15:20:48 (GMT)
commitea534f79a5cb388d96393f98882d724affdd29b9 (patch)
tree99e0b181556966783407c9948bbbf6d6fe6ec949 /Misc
parent33f96f180022d150d5ad7e8939819913998b0e7f (diff)
parent8e44aa5ae475be3e2944daee4d98ca36e466dd6a (diff)
downloadcpython-ea534f79a5cb388d96393f98882d724affdd29b9.zip
cpython-ea534f79a5cb388d96393f98882d724affdd29b9.tar.gz
cpython-ea534f79a5cb388d96393f98882d724affdd29b9.tar.bz2
(Merge 3.4) Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to
store the result of sendto() instead of the C int type. (The bug was already fixed in the default branch, but differently.)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 19228a9..8ad4454 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the
+ result of sendto() instead of the C int type.
+
- Issue #23618: :meth:`socket.socket.connect` now waits until the connection
completes instead of raising :exc:`InterruptedError` if the connection is
interrupted by signals, signal handlers don't raise an exception and the