diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 06:25:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 06:25:07 (GMT) |
commit | 52d0eb2dc0728b68b1aaac06936d19a84ffe9a75 (patch) | |
tree | a11ef6d3d946acbabc9fc9068560a927fb7dfe7a /Doc/whatsnew | |
parent | 17c27d7c7d2451f7929423c356326b46960ba565 (diff) | |
parent | 3c38e066b1a0e600575b2c72207b0f1ac85073cc (diff) | |
download | cpython-52d0eb2dc0728b68b1aaac06936d19a84ffe9a75.zip cpython-52d0eb2dc0728b68b1aaac06936d19a84ffe9a75.tar.gz cpython-52d0eb2dc0728b68b1aaac06936d19a84ffe9a75.tar.bz2 |
Issue #27998: Documented bytes paths support on Windows.
Diffstat (limited to 'Doc/whatsnew')
-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` |