bpo-28682: Added support for bytes paths in os.fwalk(). (#489)

This commit is contained in:
Serhiy Storchaka 2017-03-07 14:33:21 +02:00 committed by GitHub
parent 8886d5f392
commit 8f6b344d36
5 changed files with 37 additions and 15 deletions

View file

@ -2840,6 +2840,9 @@ features:
.. versionchanged:: 3.6
Accepts a :term:`path-like object`.
.. versionchanged:: 3.7
Added support for :class:`bytes` paths.
Linux extended attributes
~~~~~~~~~~~~~~~~~~~~~~~~~

View file

@ -97,6 +97,12 @@ New Modules
Improved Modules
================
os
--
Added support for :class:`bytes` paths in :func:`~os.fwalk`.
(Contributed by Serhiy Storchaka in :issue:`28682`.)
unittest.mock
-------------