diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:16:08 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:16:08 (GMT) |
commit | 8e44aa5ae475be3e2944daee4d98ca36e466dd6a (patch) | |
tree | 29201255c6f27a63355ac12f348d74961daa03de /Misc | |
parent | e7c749238e8fe2a10248ae9d81b1e53153496a8d (diff) | |
download | cpython-8e44aa5ae475be3e2944daee4d98ca36e466dd6a.zip cpython-8e44aa5ae475be3e2944daee4d98ca36e466dd6a.tar.gz cpython-8e44aa5ae475be3e2944daee4d98ca36e466dd6a.tar.bz2 |
Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the
result of sendto() instead of the C int type.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,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 #21526: Tkinter now supports new boolean type in Tcl 8.5. - Issue #23838: linecache now clears the cache and returns an empty result on |