[issue28683] bind() on a unix socket raises PermissionError on Android for a non-root user

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +1043 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue28683] bind() on a unix socket raises PermissionError on Android for a non-root user

2016-12-14 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue28683] bind() on a unix socket raises PermissionError on Android for a non-root user

2016-12-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset b65ae19bc42a by Xavier de Gaye in branch '3.6': Issue #28683: Fix the tests that bind() a unix socket and raise PermissionError https://hg.python.org/cpython/rev/b65ae19bc42a New changeset 0350e0634a4b by Xavier de Gaye in branch 'default': Issue #2

[issue28683] bind() on a unix socket raises PermissionError on Android for a non-root user

2016-12-13 Thread Xavier de Gaye
Xavier de Gaye added the comment: test_pathlib must also be fixed for this same problem. New patch. -- Added file: http://bugs.python.org/file45878/bind_unix_socket_2.patch ___ Python tracker __

[issue28683] bind() on a unix socket raises PermissionError on Android for a non-root user

2016-11-13 Thread Xavier de Gaye
New submission from Xavier de Gaye: Tests in test_socket and test_asyncore fail on Android when bind() on a unix socket raises PermissionError for a non-root user. This occurs also in test_asyncio and this is logged in a separate issue as asyncio has its own project. Patch attached.