summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>2024-02-18 22:08:50 (GMT)
committerGitHub <noreply@github.com>2024-02-18 22:08:50 (GMT)
commitedea0e7d9938139d53af84de817097bc12bb8f92 (patch)
treec627d3cee9461ae70ab92badb2b1745974d67f02 /Doc
parent1e5719a663d5b1703ad588dda4fccd763c7d3e99 (diff)
downloadcpython-edea0e7d9938139d53af84de817097bc12bb8f92.zip
cpython-edea0e7d9938139d53af84de817097bc12bb8f92.tar.gz
cpython-edea0e7d9938139d53af84de817097bc12bb8f92.tar.bz2
gh-114709: Mark commonpath behaviour as changed in 3.13 (#115639)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/os.path.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index 16e654f..3ee2b7d 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -90,7 +90,10 @@ the :mod:`glob` module.)
.. versionadded:: 3.5
.. versionchanged:: 3.6
- Accepts an iterable of :term:`path-like objects <path-like object>`.
+ Accepts a sequence of :term:`path-like objects <path-like object>`.
+
+ .. versionchanged:: 3.13
+ Any iterable can now be passed, rather than just sequences.
.. function:: commonprefix(list)