]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-26329: update os.path.normpath documentation (GH-20138)
authorFurkan Onder <furkanonder@protonmail.com>
Mon, 12 Jul 2021 12:48:01 +0000 (15:48 +0300)
committerGitHub <noreply@github.com>
Mon, 12 Jul 2021 12:48:01 +0000 (09:48 -0300)
* bpo-26329: update os.path.normpath documentation

* Update os.path.rst

* Update posixpath.py

* update Pathname Resolution note

Doc/library/os.path.rst
Lib/posixpath.py

index d06d9ce8c9e3d7dab46595696aa908bae735d4e1..e2f43424df15e116af5dda8bf7888e26258732bf 100644 (file)
@@ -340,6 +340,14 @@ the :mod:`glob` module.)
    that contains symbolic links.  On Windows, it converts forward slashes to
    backward slashes. To normalize case, use :func:`normcase`.
 
+  .. note::
+      On POSIX systems, in accordance with `IEEE Std 1003.1 2013 Edition; 4.13
+      Pathname Resolution <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13>`_,
+      if a pathname begins with exactly two slashes, the first component
+      following the leading characters may be interpreted in an implementation-defined
+      manner, although more than two leading characters shall be treated as a
+      single character.
+
    .. versionchanged:: 3.6
       Accepts a :term:`path-like object`.
 
index 259baa64b193b8337e772499a2d564be9b839baa..195374613a779fe4f118d478efea032636339a6c 100644 (file)
@@ -352,6 +352,7 @@ def normpath(path):
     initial_slashes = path.startswith(sep)
     # POSIX allows one or two initial slashes, but treats three or more
     # as single slash.
+    # (see http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13)
     if (initial_slashes and
         path.startswith(sep*2) and not path.startswith(sep*3)):
         initial_slashes = 2