diff options
Diffstat (limited to 'Misc/NEWS.d/next/Library/2020-03-09-01-45-06.bpo-39850.eaJNIE.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-03-09-01-45-06.bpo-39850.eaJNIE.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-03-09-01-45-06.bpo-39850.eaJNIE.rst b/Misc/NEWS.d/next/Library/2020-03-09-01-45-06.bpo-39850.eaJNIE.rst new file mode 100644 index 0000000..bb00dd8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-03-09-01-45-06.bpo-39850.eaJNIE.rst @@ -0,0 +1,5 @@ +:mod:`multiprocessing` now supports abstract socket addresses (if abstract sockets +are supported in the running platform). When creating arbitrary addresses (like when +default-constructing :class:`multiprocessing.connection.Listener` objects) abstract +sockets are preferred to avoid the case when the temporary-file-generated address is +too large for an AF_UNIX socket address. Patch by Pablo Galindo. |