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 lcantey
Recipients georg.brandl, lcantey, leve, loewis, nnorwitz, nyamatongwe
Date 2008-08-22.00:15:31
SpamBayes Score 0.0065468843
Marked as misclassified No
Message-id <1219364133.21.0.878156943893.issue1001604@psf.upfronthosting.co.za>
In-reply-to
Content
2.5.1 (r251:54863, Jul 10 2008, 17:24:48)

Fails for me with 2.5.1 on Linux, OS X, and Windows.

>>> glob.glob("*")
['t.txt', 't\xd0\xb4.txt', 't\xe2\xbd\x94.txt']
>>> glob.glob(u"*")
['t.txt', 't\xd0\xb4.txt', 't\xe2\xbd\x94.txt']
>>> glob.glob(u"./*")
[u'./t.txt', u'./t\u0434.txt', u'./t\u2f54.txt']
History
Date User Action Args
2008-08-22 00:15:33lcanteysetrecipients: + lcantey, loewis, nnorwitz, georg.brandl, nyamatongwe, leve
2008-08-22 00:15:33lcanteysetmessageid: <1219364133.21.0.878156943893.issue1001604@psf.upfronthosting.co.za>
2008-08-22 00:15:32lcanteylinkissue1001604 messages
2008-08-22 00:15:31lcanteycreate