Message326432
After
$ mkdir -p foo/bar && chmod 000 foo
one gets
In [1]: glob.glob("foo/bar")
Out[1]: []
but
In [2]: list(Path("foo/bar").glob("*"))
gives a PermissionError.
I'm not arguing that pathlib should reproduce glob's behavior (in fact I think raising an exception is better in this case), but this could be better documented (os.walk does indicate that "By default, errors from the scandir() call are ignored." whereas I don't think either glob or pathlib docs mention this point at all).
Compare with https://bugs.python.org/issue24120, which relates to unreadable directories found *inside* the toplevel directory. |
|
| Date |
User |
Action |
Args |
| 2018-09-26 08:36:33 | Antony.Lee | set | recipients:
+ Antony.Lee |
| 2018-09-26 08:36:33 | Antony.Lee | set | messageid: <[email protected]> |
| 2018-09-26 08:36:33 | Antony.Lee | link | issue34807 messages |
| 2018-09-26 08:36:33 | Antony.Lee | create | |
|