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 eryksun
Recipients BreamoreBoy, eryksun, ezio.melotti, ionelmc, r.david.murray, vstinner
Date 2014-06-19.14:07:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403186830.52.0.0421446601744.issue21808@psf.upfronthosting.co.za>
In-reply-to
Content
> Setting the Windows console encoding to cp65001 using the chcp 
> command doesn't make the Windows console fully Unicode compliant. 
> It is a little bit better using TTF fonts, but it's not enough. 
> See the old issue #1602 opened 7 years ago and not fixed yet.

It's annoyingly broken for me due to the problems with WriteFile and ReadFile.

    >>> print('\u0100')             
    Ā
    
    >>>

Note the extra line because write() returns that 2 characters were written instead of 3 bytes. So the final linefeed byte gets written again. 

Let's buy 4 and get 1 free:

    >>> print('\u0100' * 4)
    ĀĀĀĀ
    Ā
    
    >>>
History
Date User Action Args
2014-06-19 14:07:10eryksunsetrecipients: + eryksun, vstinner, ezio.melotti, ionelmc, r.david.murray, BreamoreBoy
2014-06-19 14:07:10eryksunsetmessageid: <1403186830.52.0.0421446601744.issue21808@psf.upfronthosting.co.za>
2014-06-19 14:07:10eryksunlinkissue21808 messages
2014-06-19 14:07:10eryksuncreate