diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-10-14 16:41:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 16:41:11 (GMT) |
commit | bd036d3d15fc1310ccc32a43a3296b8c157ac221 (patch) | |
tree | aad521ca149531e7866ad5a760c1fa677592f786 /Misc | |
parent | c8bb467f4006fbf5d24d2491248bcbabee5d827e (diff) | |
download | cpython-bd036d3d15fc1310ccc32a43a3296b8c157ac221.zip cpython-bd036d3d15fc1310ccc32a43a3296b8c157ac221.tar.gz cpython-bd036d3d15fc1310ccc32a43a3296b8c157ac221.tar.bz2 |
bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850)
* Add News entry for the change in multiprocessing.reduction.recvfds
made in GH-9613.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst b/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst new file mode 100644 index 0000000..4f4a7f7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-10-13-19-15-23.bpo-34521.YPaiTK.rst @@ -0,0 +1,3 @@ +Use :func:`socket.CMSG_SPACE` to calculate ancillary data size instead of +:func:`socket.CMSG_LEN` in :func:`multiprocessing.reduction.recvfds` as +:rfc:`3542` requires the use of the former for portable applications. |