This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, frosty00
Date 2019-06-04.20:08:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559678929.59.0.417528247321.issue37152@roundup.psfhosted.org>
In-reply-to
Content
The socket type is known as AF_UNIX, AF_LOCAL, Unix domain socket, and IPC (inter process communication) socket. The man page unix(7) http://man7.org/linux/man-pages/man7/unix.7.html uses three of those four terms to explain the socket type:

    The AF_UNIX (also known as AF_LOCAL) socket family is used to
    communicate between processes on the same machine efficiently.
    Traditionally, UNIX domain sockets can be [...]

The strace command also uses the name AF_UNIX and not AF_LOCAL. HTTP over AF_UNIX often uses http+unix:// or unix:// to refer to a socket file.

I'm -1 to add the alias. It just adds to the confusion. It's also against the Zen of Python: "There should be one-- and preferably only one --obvious way to do it."
History
Date User Action Args
2019-06-04 20:08:49christian.heimessetrecipients: + christian.heimes, frosty00
2019-06-04 20:08:49christian.heimessetmessageid: <1559678929.59.0.417528247321.issue37152@roundup.psfhosted.org>
2019-06-04 20:08:49christian.heimeslinkissue37152 messages
2019-06-04 20:08:49christian.heimescreate