◐ Shell
clean mode source ↗

gh-111246: Remove listening Unix socket on close by CendioOssman · Pull Request #111483 · python/cpython

Try to clean up the socket file we create so we don't add unused noise
to the file system.
We only want to clean up *our* socket, so try to determine if we still
own this address or if something else has replaced it.
Allow the implicit cleanup to be disabled in case there are some odd
corner cases where this causes issues.

gvanrossum

kumaraditya303

gvanrossum

aisk pushed a commit to aisk/cpython that referenced this pull request

Feb 11, 2024
Try to clean up the socket file we create so we don't add unused noise to the file system.

fantix added a commit to MagicStack/uvloop that referenced this pull request

Aug 28, 2024
This is derived from python/cpython#111483 but available on
all Python versions with uvloop, only that it's only enabled
by default for Python 3.13 and above to be consistent with
CPython behavior.

Glyphack pushed a commit to Glyphack/cpython that referenced this pull request

Sep 2, 2024
Try to clean up the socket file we create so we don't add unused noise to the file system.

fantix added a commit to MagicStack/uvloop that referenced this pull request

Sep 2, 2024
This is derived from python/cpython#111483 but available on
all Python versions with uvloop, only that it's only enabled
by default for Python 3.13 and above to be consistent with
CPython behavior.

* Also add Python 3.13 to CI (#610)
* Enable CI in debug mode
* Fix CI to include [dev]

---------

Co-authored-by: Fantix King <fantix.king@gmail.com>