[issue28682] Bytes support in os.fwalk()

2017-03-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8f6b344d368c15c3fe56c65c2f2776e7766fef55 by Serhiy Storchaka in branch 'master': bpo-28682: Added support for bytes paths in os.fwalk(). (#489) https://github.com/python/cpython/commit/8f6b344d368c15c3fe56c65c2f2776e7766fef55 -- _

[issue28682] Bytes support in os.fwalk()

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: -580 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28682] Bytes support in os.fwalk()

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: +580 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue28682] Bytes support in os.fwalk()

2017-03-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue28682] Bytes support in os.fwalk()

2017-03-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +402 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue28682] Bytes support in os.fwalk()

2017-01-03 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue28682] Bytes support in os.fwalk()

2016-12-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue28682] Bytes support in os.fwalk()

2016-11-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Bytes path support is os.walk() is not documented. Actual behavior of os.fwalk() doesn't contradict the documentation. -- ___ Python tracker

[issue28682] Bytes support in os.fwalk()

2016-11-26 Thread Antti Haapala
Antti Haapala added the comment: shouldn't this get in sooner, as the 3.5.2 documentation says that it behaves exactly like `os.walk`, with some additions, none of which says "bytes paths are not supported". This looks like a bug to me. -- nosy: +ztane

[issue28682] Bytes support in os.fwalk()

2016-11-23 Thread Zac Medico
Changes by Zac Medico : -- nosy: +zmedico ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue28682] Bytes support in os.fwalk()

2016-11-13 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: os.walk() supports string and bytes paths, but os.fwalk() always supported only string paths. Proposed patch adds support of bytes paths in os.fwalk(). -- components: Library (Lib) files: fwalk-bytes.patch keywords: patch messages: 280690 nosy: larr