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 Je GeVa
Recipients Je GeVa
Date 2020-03-04.22:27:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583360820.43.0.706736327816.issue39856@roundup.psfhosted.org>
In-reply-to
Content
some common Unix style pathname pattern expansions are not supported :

~/ for $HOME
~user/ for $HOME of user
{1,abc,999} for enumeration

ex:

lets say
$ls ~
hello1.a hello2.a helli3.c

then :
$echo ~/hell*{1,3}.*
hello1.a helli3.c

while
>> glob.glob("~/hel*")
[]
>> glob.glob("/home/jegeva/hel*")
['hello1.a','hello2.a','helli3.c
>> glob.glob("/home/jegeva/hell*{1,3}.*")
[]
History
Date User Action Args
2020-03-04 22:27:00Je GeVasetrecipients: + Je GeVa
2020-03-04 22:27:00Je GeVasetmessageid: <1583360820.43.0.706736327816.issue39856@roundup.psfhosted.org>
2020-03-04 22:27:00Je GeValinkissue39856 messages
2020-03-04 22:27:00Je GeVacreate