summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-07 12:33:21 (GMT)
committerGitHub <noreply@github.com>2017-03-07 12:33:21 (GMT)
commit8f6b344d368c15c3fe56c65c2f2776e7766fef55 (patch)
tree5b87db90a48d67bb3fba2881de4acceef1e5501f /Doc
parent8886d5f39286dffa7d9337857b151e7fb4af23fd (diff)
downloadcpython-8f6b344d368c15c3fe56c65c2f2776e7766fef55.zip
cpython-8f6b344d368c15c3fe56c65c2f2776e7766fef55.tar.gz
cpython-8f6b344d368c15c3fe56c65c2f2776e7766fef55.tar.bz2
bpo-28682: Added support for bytes paths in os.fwalk(). (#489)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/os.rst3
-rw-r--r--Doc/whatsnew/3.7.rst6
2 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 974ab2d..7d2ec60 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -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
~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 0749d35..1c737e8 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -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
-------------