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.

Author Roger Erens
Recipients Roger Erens, docs@python
Date 2018-02-17.00:06:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518826009.15.0.467229070634.issue32860@psf.upfronthosting.co.za>
In-reply-to
Content
Although both glob and iglob have the same arity in Lib/glob.py:

def glob(pathname, *, recursive=False)

def iglob(pathname, *, recursive=False):

the documentation only mentions for glob the single star
https://docs.python.org/3/library/glob.html#glob.iglob:

glob.glob(pathname, *, recursive=False)

glob.iglob(pathname, recursive=False)
History
Date User Action Args
2018-02-17 00:06:49Roger Erenssetrecipients: + Roger Erens, docs@python
2018-02-17 00:06:49Roger Erenssetmessageid: <1518826009.15.0.467229070634.issue32860@psf.upfronthosting.co.za>
2018-02-17 00:06:49Roger Erenslinkissue32860 messages
2018-02-17 00:06:49Roger Erenscreate