cpython: 9bffe39e8273 (original) (raw)
Mercurial > cpython
changeset 100314:9bffe39e8273 3.5
Fixed a bug in os.walk() with bytes path on Windows caused by merging fixes for issues #25995 and #25911. [#25995]
Serhiy Storchaka storchaka@gmail.com | |
---|---|
date | Wed, 24 Feb 2016 13:03:54 +0200 |
parents | ce5bf3290621 |
children | 47fa003aa9f1 758cb13aaa2c |
files | Lib/os.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/os.py 2 |
line wrap: on
line diff
--- a/Lib/os.py +++ b/Lib/os.py @@ -369,7 +369,7 @@ def walk(top, topdown=True, onerror=None # Note that scandir is global in this module due # to earlier import-*. scandir_it = scandir(top)
entries = list(scandir(top))[](#l1.7)