mirror of https://github.com/python/cpython
#5655: fix docstring oversight.
This commit is contained in:
parent
d5cc025e1c
commit
3ade7612d8
|
@ -16,7 +16,7 @@ def glob(pathname):
|
||||||
return list(iglob(pathname))
|
return list(iglob(pathname))
|
||||||
|
|
||||||
def 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.
|
The pattern may contain simple shell-style wildcards a la fnmatch.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue