diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:20:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:20:48 (GMT) |
commit | ea534f79a5cb388d96393f98882d724affdd29b9 (patch) | |
tree | 99e0b181556966783407c9948bbbf6d6fe6ec949 /Misc | |
parent | 33f96f180022d150d5ad7e8939819913998b0e7f (diff) | |
parent | 8e44aa5ae475be3e2944daee4d98ca36e466dd6a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |