]> granicus.if.org Git - python/commitdiff
Explain that the orderness of the result of glob is system-dependant (GH-6587)
authorElena Oat <oat.elena@gmail.com>
Sun, 4 Nov 2018 14:50:55 +0000 (06:50 -0800)
committerJulien Palard <julien@palard.fr>
Sun, 4 Nov 2018 14:50:55 +0000 (15:50 +0100)
Thanks!

Doc/library/glob.rst

index 0db10b5efc10cb9d8b0253c84bb12999cc7900e1..2a5f0ddc4ef31969db1760e7aef3cbb7dc68671f 100644 (file)
@@ -42,7 +42,8 @@ For example, ``'[?]'`` matches the character ``'?'``.
    a string containing a path specification. *pathname* can be either absolute
    (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like
    :file:`../../Tools/\*/\*.gif`), and can contain shell-style wildcards. Broken
-   symlinks are included in the results (as in the shell).
+   symlinks are included in the results (as in the shell). Whether or not the
+   results are sorted depends on the file system.
 
    .. index::
       single: **; in glob-style wildcards