Message209333
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. |
|
Date |
User |
Action |
Args |
2014-01-26 15:57:03 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, lemburg, lars.gustaebel, pitrou, vstinner, benjamin.peterson, ezio.melotti, berker.peksag, vajrasky |
2014-01-26 15:57:03 | serhiy.storchaka | link | issue19920 messages |
2014-01-26 15:57:03 | serhiy.storchaka | create | |
|