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 Paul Monson
Recipients Jeffrey.Kintscher, Paul Monson, eric.smith, filips123, giampaolo.rodola, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-07-10.18:06:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562782000.84.0.101688590431.issue33408@roundup.psfhosted.org>
In-reply-to
Content
I've been asked by my team to investigate what is required to enable AF_UNIX in Python.

Is anyone else actively investigating this?  I did a prelinary investigation and the impact on test in test_sockets was pretty simple.  

However there were 26 test failures in test_asyncio tests, with only the naive changes to all AF_UNIX to work with the socket class on Windows.  

The first failure I looked at was caused by ProactorEventLoop in windows_events.py not providing a windows-specific version of create_unix_server. This results in the code falling back to AbstractServer.create_unix_server which raises NotImplementedError.
History
Date User Action Args
2019-07-10 18:06:40Paul Monsonsetrecipients: + Paul Monson, paul.moore, eric.smith, giampaolo.rodola, tim.golden, zach.ware, steve.dower, filips123, Jeffrey.Kintscher
2019-07-10 18:06:40Paul Monsonsetmessageid: <1562782000.84.0.101688590431.issue33408@roundup.psfhosted.org>
2019-07-10 18:06:40Paul Monsonlinkissue33408 messages
2019-07-10 18:06:40Paul Monsoncreate