From: Georg Brandl Date: Wed, 1 Apr 2009 17:46:01 +0000 (+0000) Subject: #5655: fix docstring oversight. X-Git-Tag: v2.7a1~1636 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ade7612d8cb9315be50af866cca615962faced9;p=python #5655: fix docstring oversight. --- diff --git a/Lib/glob.py b/Lib/glob.py index 75d7bf94e5..04364be7df 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.