diff options
Diffstat (limited to 'Doc/library/glob.rst')
-rw-r--r-- | Doc/library/glob.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 7e21f1b..320df28 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -7,6 +7,8 @@ .. index:: single: filenames; pathname expansion +**Source code:** :source:`Lib/glob.py` + The :mod:`glob` module finds all the pathnames matching a specified pattern according to the rules used by the Unix shell. No tilde expansion is done, but ``*``, ``?``, and character ranges expressed with ``[]`` will be correctly @@ -50,5 +52,3 @@ preserved. :: Module :mod:`fnmatch` Shell-style filename (not path) expansion - Latest version of the :source:`glob module Python source code <Lib/glob.py>` - |