This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: fix glob.iglob docstring
Type: Stage:
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: dsm001, georg.brandl
Priority: normal Keywords: patch

Created on 2009-04-01 17:24 by dsm001, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
iglob_main.patch dsm001, 2009-04-01 17:24
Messages (2)
msg85054 - (view) Author: DSM (dsm001) Date: 2009-04-01 17:24
glob.iglob's docstring claims it returns a list, but as the name
suggests it returns an iterator.  Looks like a cut 'n paste oversight. 
glob.rst is correct.

Patch attached against mainline trunk r70961.  Should also apply cleanly
to py3k trunk.
msg85057 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-04-01 17:46
Committed in r70963, thanks!
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49905
2009-04-01 17:46:13georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg85057
2009-04-01 17:24:16dsm001create