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 pitrou
Recipients gradha, lcantey, orsenthil, pitrou
Date 2008-08-22.15:57:26
SpamBayes Score 4.3863263e-05
Marked as misclassified No
Message-id <1219420648.57.0.982658278795.issue1777458@psf.upfronthosting.co.za>
In-reply-to
Content
Seems fixed on 2.6.

Python 2.6b3+ (trunk, Aug 22 2008, 11:27:51) [MSC v.1500 32 bit (Intel)]
on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import glob
>>> glob.glob("*.py")
['iocrash.py', 'setup.py']
>>> glob.glob(u"*.py")
[u'iocrash.py', u'setup.py']
>>> glob.glob(u"./*.py")
[u'.\\iocrash.py', u'.\\setup.py']
History
Date User Action Args
2008-08-22 15:57:29pitrousetrecipients: + pitrou, gradha, orsenthil, lcantey
2008-08-22 15:57:28pitrousetmessageid: <1219420648.57.0.982658278795.issue1777458@psf.upfronthosting.co.za>
2008-08-22 15:57:27pitroulinkissue1777458 messages
2008-08-22 15:57:26pitroucreate