[issue27998] Bytes paths now are supported in os.scandir() on Windows

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

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-11-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Steve. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-11-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset ac63c70635db by Serhiy Storchaka in branch '3.6': Issue #27998: Documented bytes paths support on Windows. https://hg.python.org/cpython/rev/ac63c70635db New changeset 26195e07fcc5 by Serhiy Storchaka in branch 'default': Issue #27998: Documented by

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-11-19 Thread Steve Dower
Steve Dower added the comment: Doc change looks good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-11-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Proposed patch documents bytes paths support on Windows. -- keywords: +patch nosy: +Elvis.Pranskevichus, yselivanov stage: needs patch -> patch review Added file: http://bugs.python.org/file45469/doc-scandir-bytes.patch ___

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Now it is documentation issue again. -- keywords: -patch priority: release blocker -> normal stage: patch review -> needs patch ___ Python tracker __

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4ed634870a9a by Serhiy Storchaka in branch '3.6': Issue #27998: Fixed bytes path support in os.scandir() on Windows. https://hg.python.org/cpython/rev/4ed634870a9a New changeset 837114dea493 by Serhiy Storchaka in branch 'default': Issue #27998: Fix

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Eryk Sun
Eryk Sun added the comment: With the patch I uploaded, test_glob and test_os BytesWalkTests both pass, in both Windows 10 and Linux. Without it those tests fail for me in Windows 10. -- ___ Python tracker

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Eryk. The patch LGTM. Did you tested that it fixes tests? -- ___ Python tracker ___ ___

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Eryk Sun
Eryk Sun added the comment: Here's an alternative patch, using PyUnicode_FSDecoder. It also adds path_object_error and path_object_error2 helper functions. -- Added file: http://bugs.python.org/file45017/issue_27998_01.patch ___ Python tracker

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suppose the following patch should fix the issue. Could anybody please test it on Windows? -- assignee: docs@python -> serhiy.storchaka stage: needs patch -> patch review Added file: http://bugs.python.org/file45009/direntry_bytes_path.patch __

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Hmm, tests are passed on some Windows buildbots, but failed on others. http://buildbot.python.org/all/builders/AMD64%20Windows10%203.x/builds/1631/steps/test/logs/stdio == ERROR: test_walk_top

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Tests are passed on Windows. Now we need to document that bytes paths are supported in os.scandir() on Windows since 3.6. -- assignee: serhiy.storchaka -> docs@python components: +Documentation -Extension Modules nosy: +docs@python stage: patch revie

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c36e6fd0232 by Serhiy Storchaka in branch '3.6': Issue #27998: Removed workarounds for supporting bytes paths on Windows in https://hg.python.org/cpython/rev/7c36e6fd0232 New changeset bcee710c42fe by Serhiy Storchaka in branch 'default': Issue #27

[issue27998] Bytes paths now are supported in os.scandir() on Windows

2016-10-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka stage: needs patch -> patch review title: Remove support of bytes paths in os.scandir() -> Bytes paths now are supported in os.scandir() on Windows ___ Python tracker