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 serhiy.storchaka
Recipients daniel, serhiy.storchaka
Date 2018-11-09.17:25:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541784308.91.0.788709270274.issue35201@psf.upfronthosting.co.za>
In-reply-to
Content
This is expected behavior, and it matches the behavior of Bash.

$ mkdir empty
$ shopt -s globstar failglob
$ echo empty/*
bash: no match: empty/*
$ echo empty/**
empty/

"**" matches zero or more path components. In this case case it matches zero.
History
Date User Action Args
2018-11-09 17:25:08serhiy.storchakasetrecipients: + serhiy.storchaka, daniel
2018-11-09 17:25:08serhiy.storchakasetmessageid: <1541784308.91.0.788709270274.issue35201@psf.upfronthosting.co.za>
2018-11-09 17:25:08serhiy.storchakalinkissue35201 messages
2018-11-09 17:25:08serhiy.storchakacreate