Author lars.gustaebel
Recipients
Date 2007-04-20.19:25:00
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
tarfile.py was never guaranteed to work correctly with unicode filenames. The fact that this works with Python < 2.5 is purely accidental.

You can work around this (sticking to your example):

i = t.gettarinfo(u'mac.txt', 'mac.txt')

or:

i = t.gettarinfo('mac.txt')
History
Date User Action Args
2007-08-23 14:53:14adminlinkissue1704156 messages
2007-08-23 14:53:14admincreate