diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 06:23:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 06:23:07 (GMT) |
commit | 3c38e066b1a0e600575b2c72207b0f1ac85073cc (patch) | |
tree | 874426fec04b37a4e09b5e9a20917ca2fd99802e /Doc/whatsnew/3.6.rst | |
parent | bb08db4010a45bcd96f6aaf47dbaed5a1c2b3729 (diff) | |
download | cpython-3c38e066b1a0e600575b2c72207b0f1ac85073cc.zip cpython-3c38e066b1a0e600575b2c72207b0f1ac85073cc.tar.gz cpython-3c38e066b1a0e600575b2c72207b0f1ac85073cc.tar.bz2 |
Issue #27998: Documented bytes paths support on Windows.
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index ce8ab98..0b2e6b7 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1196,6 +1196,8 @@ See the summary for :ref:`PEP 519 <whatsnew36-pep519>` for details on how the :mod:`os` and :mod:`os.path` modules now support :term:`path-like objects <path-like object>`. +:func:`~os.scandir` now supports :class:`bytes` paths on Windows. + A new :meth:`~os.scandir.close` method allows explicitly closing a :func:`~os.scandir` iterator. The :func:`~os.scandir` iterator now supports the :term:`context manager` protocol. If a :func:`scandir` |