From: Elena Oat Date: Sun, 4 Nov 2018 14:50:55 +0000 (-0800) Subject: Explain that the orderness of the result of glob is system-dependant (GH-6587) X-Git-Tag: v3.8.0a1~588 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52465e1b8bb7af23d642dbb43c8173d079b7ec30;p=thirdparty%2FPython%2Fcpython.git Explain that the orderness of the result of glob is system-dependant (GH-6587) Thanks! --- diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 0db10b5efc10..2a5f0ddc4ef3 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -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