[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread miss-islington
miss-islington added the comment: 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

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread miss-islington
miss-islington added the comment: 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

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7, Python 3.8 ___ Python tracker

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +5505 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +5504 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: 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/6887d86e9a04b9c5718b08e5d9e1ca3c

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5502 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue32860] Definition of iglob does not mention single star (unlike glob)

2018-02-16 Thread Roger Erens
New submission from Roger Erens : 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: g