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.

作者 paul.moore
收信人 Robert Baker, ezio.melotti, martin.panter, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
日期 2017-03-26.07:41:15
SpamBayes Score -1.0
Marked as misclassified
Message-id <1490514075.96.0.693814083814.issue29907@psf.upfronthosting.co.za>
In-reply-to
内容
Also, you need to:

1. Ensure you are using characters that are available in the encoding that sys.stdout uses - in Python prior to 3.6, this would be your Windows *console* code page, and in 3.6+ would be UTF-8.
2. Declare the encoding of your source code if you are not using the default (which is ASCII in Python 2, and UTF-8 in Python 3).

Specifically, if you write your source in UTF-8, or use an encoding declaration or \u escapes, and you use Python 3.6, this problem will likely have gone away.
历史
日期 用户 动作 参数
2017-03-26 07:41:15paul.moore修改recipients: + paul.moore, vstinner, tim.golden, ezio.melotti, martin.panter, zach.ware, steve.dower, Robert Baker
2017-03-26 07:41:15paul.moore修改messageid: <1490514075.96.0.693814083814.issue29907@psf.upfronthosting.co.za>
2017-03-26 07:41:15paul.moore链接issue29907 messages
2017-03-26 07:41:15paul.moore创建