New submission from Michael Pelletier <mv...@yahoo.com>:
This emerged during a fault in a fileserver mounted on a Linux machine via a Samba client mount. The access to the mountpoint was being blocked by the fileserver, but os.access() wasn't able to recognize it as unreadable: >>> os.access('/opt/xray', os.R_OK) True >>> s = os.stat('/opt/xray') Traceback (most recent call last): File "<stdin>", line 1, in <module> PermissionError: [Errno 13] Permission denied: '/opt/xray' >>> Python version is 3.6.8. ---------- components: IO messages: 376156 nosy: mvpel priority: normal severity: normal status: open title: os.access() doesn't recognize lack of permissions on an SMB mountpoint type: behavior versions: Python 3.8 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue41677> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com