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 leve
Recipients
Date 2004-08-01.19:20:15
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
#Here is the script
#Python 2.3 on W2K
 
import glob
 
name = glob.glob(u"./*.mp3")[0]
print type(name)
name = glob.glob(u"*.mp3")[0]
print type(name)
 
##OUTPUT##
#<type 'unicode'>
#<type 'str'>
 
#The second line should be <type 'unicode'> too.

History
Date User Action Args
2007-08-23 15:39:00adminlinkissue1001604 messages
2007-08-23 15:39:00admincreate