[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-02 Thread miss-islington
miss-islington added the comment: New changeset fa5157e0499f7afdb59e220e3f4fdbf44adb5ac8 by Miss Islington (bot) in branch '3.6': closes bpo-33202: fix os.walk mentioning os.listdir instead of os.scandir (GH-6335) https://github.com/python/cpython/commit/fa5157e0499f7afdb59e220e3f4fdbf44adb5a

[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-02 Thread miss-islington
miss-islington added the comment: New changeset f6d1d65803f290dfe14048f17d8125f8093a61ec by Miss Islington (bot) in branch '3.7': closes bpo-33202: fix os.walk mentioning os.listdir instead of os.scandir (GH-6335) https://github.com/python/cpython/commit/f6d1d65803f290dfe14048f17d8125f8093a61

[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +6071 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +6070 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset badb8948aaa8b669c4a6f675a0bc7d98e188 by Benjamin Peterson (Andrés Delfino) in branch 'master': closes bpo-33202: fix os.walk mentioning os.listdir instead of os.scandir (GH-6335) https://github.com/python/cpython/commit/badb8948aaa8b6

[issue33202] os.walk mentions os.listdir instead of os.scandir

2018-04-01 Thread Andrés Delfino
New submission from Andrés Delfino : Documentation states that, for walk, "errors from the listdir() call are ignored". That's no longer the case since 3.5. Change mention to listdir() to scandir(). -- assignee: docs@python components: Documentation messages: 314786 nosy: adelfino, doc