summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorPierre Ossman (ThinLinc team) <ossman@cendio.se>2023-11-08 16:10:10 (GMT)
committerGitHub <noreply@github.com>2023-11-08 16:10:10 (GMT)
commit74b868f636a8af9e5540e3315de666500147d47a (patch)
treee36a68b54fee50c800155c22ba796dcdbaab498c /Doc/whatsnew
parentf88caab467eb57cfe293cdf9fb7cce29b24fda7f (diff)
downloadcpython-74b868f636a8af9e5540e3315de666500147d47a.zip
cpython-74b868f636a8af9e5540e3315de666500147d47a.tar.gz
cpython-74b868f636a8af9e5540e3315de666500147d47a.tar.bz2
gh-111246: Remove listening Unix socket on close (#111483)
Try to clean up the socket file we create so we don't add unused noise to the file system.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index 291e276..428b648 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -149,6 +149,13 @@ array
It can be used instead of ``'u'`` type code, which is deprecated.
(Contributed by Inada Naoki in :gh:`80480`.)
+asyncio
+-------
+
+* :meth:`asyncio.loop.create_unix_server` will now automatically remove
+ the Unix socket when the server is closed.
+ (Contributed by Pierre Ossman in :gh:`111246`.)
+
copy
----