diff options
author | Georg Brandl <georg@python.org> | 2009-04-01 17:46:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-01 17:46:01 (GMT) |
commit | 3ade7612d8cb9315be50af866cca615962faced9 (patch) | |
tree | ae14d05330b30bf1166e09e57f5cd219b2bdd422 | |
parent | d5cc025e1ca25296a4658414c9b73dfdd3e038e5 (diff) | |
download | cpython-3ade7612d8cb9315be50af866cca615962faced9.zip cpython-3ade7612d8cb9315be50af866cca615962faced9.tar.gz cpython-3ade7612d8cb9315be50af866cca615962faced9.tar.bz2 |
#5655: fix docstring oversight.
-rw-r--r-- | Lib/glob.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/glob.py b/Lib/glob.py index 75d7bf9..04364be 100644 --- a/Lib/glob.py +++ b/Lib/glob.py @@ -16,7 +16,7 @@ def glob(pathname): return list(iglob(pathname)) def iglob(pathname): - """Return a list of paths matching a pathname pattern. + """Return an iterator which yields the paths matching a pathname pattern. The pattern may contain simple shell-style wildcards a la fnmatch. |