[issue34731] pathlib path.match misshandles multiple `**`

2018-09-19 Thread Berker Peksag
Change by Berker Peksag : -- superseder: -> Pathlib glob ** bug ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue34731] pathlib path.match misshandles multiple `**`

2018-09-19 Thread Ronny Pfannschmidt
Ronny Pfannschmidt added the comment: indeed it is, thanks for the reference i searched only for match and missed the glob -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker

[issue34731] pathlib path.match misshandles multiple `**`

2018-09-18 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. This looks like a duplicate of issue 29249. -- nosy: +berker.peksag ___ Python tracker ___

[issue34731] pathlib path.match misshandles multiple `**`

2018-09-18 Thread Ronny Pfannschmidt
New submission from Ronny Pfannschmidt : when porting parts of pytest to pathlib we noted that `path.match` does not quite match normal fnmatch for usages of `**` i believe this is related to always splitting the patter completely and not handling `**` in that case Bruno wrote https://githu