diff options
-rw-r--r-- | Doc/library/os.path.rst | 5 |
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) |