summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorElena Oat <oat.elena@gmail.com>2018-11-04 14:50:55 (GMT)
committerJulien Palard <julien@palard.fr>2018-11-04 14:50:55 (GMT)
commit52465e1b8bb7af23d642dbb43c8173d079b7ec30 (patch)
tree721d6b4d96319c03618e140dd12d6b5e77ca2b7c /Doc
parentf98c1623ec90508937afc1b58556e38214d70892 (diff)
downloadcpython-52465e1b8bb7af23d642dbb43c8173d079b7ec30.zip
cpython-52465e1b8bb7af23d642dbb43c8173d079b7ec30.tar.gz
cpython-52465e1b8bb7af23d642dbb43c8173d079b7ec30.tar.bz2
Explain that the orderness of the result of glob is system-dependant (GH-6587)
Thanks!
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/glob.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst
index 0db10b5..2a5f0dd 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