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: Definition of iglob does not mention single star (unlike glob)
Type: Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Mariatta, Roger Erens, docs@python, miss-islington
Priority: normal Keywords: patch

Created on 2018-02-17 00:06 by Roger Erens, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 5712 merged ZackerySpytz, 2018-02-17 02:31
PR 5714 merged miss-islington, 2018-02-17 03:40
PR 5715 merged miss-islington, 2018-02-17 03:40
Messages (5)
msg312258 - (view) Author: Roger Erens (Roger Erens) Date: 2018-02-17 00:06
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)
msg312267 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2018-02-17 03:39
New changeset 6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721 by Mariatta (Zackery Spytz) in branch 'master':
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
https://github.com/python/cpython/commit/6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721
msg312268 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2018-02-17 03:42
Thanks!
msg312269 - (view) Author: miss-islington (miss-islington) Date: 2018-02-17 03:51
New changeset 0f764110593b337161e9321671dc13b54ca0cf95 by Miss Islington (bot) in branch '3.7':
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
https://github.com/python/cpython/commit/0f764110593b337161e9321671dc13b54ca0cf95
msg312270 - (view) Author: miss-islington (miss-islington) Date: 2018-02-17 03:58
New changeset 76591bc03a26e8fde143c25cb88a98f1c96f8bc2 by Miss Islington (bot) in branch '3.6':
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
https://github.com/python/cpython/commit/76591bc03a26e8fde143c25cb88a98f1c96f8bc2
History
Date User Action Args
2022-04-11 14:58:57adminsetgithub: 77041
2018-02-17 03:58:13miss-islingtonsetmessages: + msg312270
2018-02-17 03:51:11miss-islingtonsetnosy: + miss-islington
messages: + msg312269
2018-02-17 03:42:42Mariattasetstatus: open -> closed
versions: + Python 3.6, Python 3.7, Python 3.8
messages: + msg312268

resolution: fixed
stage: patch review -> resolved
2018-02-17 03:40:59miss-islingtonsetpull_requests: + pull_request5505
2018-02-17 03:40:07miss-islingtonsetpull_requests: + pull_request5504
2018-02-17 03:39:54Mariattasetnosy: + Mariatta
messages: + msg312267
2018-02-17 02:31:10ZackerySpytzsetkeywords: + patch
stage: patch review
pull_requests: + pull_request5502
2018-02-17 00:06:49Roger Erenscreate