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 serhiy.storchaka
Recipients benjamin.peterson, berker.peksag, ezio.melotti, lars.gustaebel, lemburg, pitrou, serhiy.storchaka, vajrasky, vstinner
Date 2014-01-26.15:57:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <2464056.IYRvxD1iL4@raxxla>
In-reply-to <1390750876.59.0.945438410201.issue19920@psf.upfronthosting.co.za>
Content
1. No. Just use existing nonmodified testtar.tar now. Later we will add new 
items in it.

2. The encoding of sys.stdout is not always the same as default locale 
encoding. You can redirect sys.stdout to text file (opened with different 
encoding) or to socket or pipe (wrapped with TextIOWrapper). So you should use 
sys.stdout.encoding and nothing else. But even this not always work, because 
it can be None (in case of StringIO) or be absent (in case of user file-like 
object). Be aware of all this corner cases.
History
Date User Action Args
2014-01-26 15:57:03serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, lars.gustaebel, pitrou, vstinner, benjamin.peterson, ezio.melotti, berker.peksag, vajrasky
2014-01-26 15:57:03serhiy.storchakalinkissue19920 messages
2014-01-26 15:57:03serhiy.storchakacreate