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 gradha
Recipients
Date 2007-08-20.07:08:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Unless I'm not understanding a previous bug report, I see this is a regression of http://sourceforge.net/tracker/index.php?func=detail&aid=1001604&group_id=5470&atid=305470.
Here's an interactive session with 2.5.1 on WXP:

In [1]: import sys

In [2]: sys.version
Out[2]: '2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)]'

In [3]: import glob

In [4]: glob.glob(u"*txt")
Out[4]: ['hola.txt', 'ma\xf1ana.txt']

In [5]: glob.glob(u"./*txt")
Out[5]: [u'.\\hola.txt', u'.\\ma\xf1ana.txt']
History
Date User Action Args
2007-08-23 14:59:19adminlinkissue1777458 messages
2007-08-23 14:59:19admincreate