diff options
author | Brett Cannon <brett@python.org> | 2016-06-09 22:58:06 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-06-09 22:58:06 (GMT) |
commit | b08388d5f2e62577e1a2379deb1681af4f148811 (patch) | |
tree | 5b8fc3c930880fec49527169c911b1a61507dd50 /Doc/library/functions.rst | |
parent | 516f5461b0959ae72d4cf57605422ec78f008220 (diff) | |
download | cpython-b08388d5f2e62577e1a2379deb1681af4f148811.zip cpython-b08388d5f2e62577e1a2379deb1681af4f148811.tar.gz cpython-b08388d5f2e62577e1a2379deb1681af4f148811.tar.bz2 |
Issue #27182: Document os.PathLike.
Part of PEP 519.
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 6f7ba1f..5757ca4 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1077,6 +1077,9 @@ are always available. They are listed here in alphabetical order. .. versionchanged:: 3.5 The ``'namereplace'`` error handler was added. + .. versionchanged:: 3.6 + Support added to accept objects implementing :class:`os.PathLike`. + .. function:: ord(c) Given a string representing one Unicode character, return an integer |