From edea0e7d9938139d53af84de817097bc12bb8f92 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sun, 18 Feb 2024 14:08:50 -0800 Subject: [PATCH] gh-114709: Mark commonpath behaviour as changed in 3.13 (#115639) --- Doc/library/os.path.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 16e654fcdb408d..3ee2b7db1e511b 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 `. + Accepts a sequence of :term:`path-like objects `. + + .. versionchanged:: 3.13 + Any iterable can now be passed, rather than just sequences. .. function:: commonprefix(list)