[issue11574] TextIOWrapper: Unicode Fallback Encoding on Python 3.3

2017-12-18 Thread STINNER Victor
STINNER Victor added the comment: Follow-up: the PEP 538 (bpo-28180) and PEP 540 (bpo-29240) have been accepted and implemented in Python 3.7! -- ___ Python tracker ___ __

[issue11574] TextIOWrapper: Unicode Fallback Encoding on Python 3.3

2012-04-25 Thread STINNER Victor
STINNER Victor added the comment: I don't think that using a fallback is a good idea. So I'm closing the issue. You can reopen the discussion on the python-dev mailing list if you don't agree with me or Martin. -- resolution: -> wont fix status: open -> closed __

[issue11574] TextIOWrapper: Unicode Fallback Encoding on Python 3.3

2011-12-14 Thread Martin v . Löwis
Martin v. Löwis added the comment: > One might say, "ok, this is a bug in distutils/distribute, it should > explicitly specify UTF-8 encoding when writing egg-info." But if this > is a sensible thing for distutils/distribute to do, regardless of > user locale, why would it not be equally sensibl

[issue11574] TextIOWrapper: Unicode Fallback Encoding on Python 3.3

2011-12-14 Thread Carl Meyer
Carl Meyer added the comment: Here's an example real-world case where the only solution I could find was to simply avoid non-ASCII characters entirely (which is obviously not a real solution): https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690 distutils/distribute require long

[issue11574] TextIOWrapper: Unicode Fallback Encoding on Python 3.3

2011-09-29 Thread STINNER Victor
Changes by STINNER Victor : -- title: Unicode Fallback Encoding on Python 3.3 -> TextIOWrapper: Unicode Fallback Encoding on Python 3.3 ___ Python tracker ___ __