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 vstinner
Recipients BreamoreBoy, brian.curtin, hct, r.david.murray, tim.golden, vstinner
Date 2013-12-10.10:32:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386671532.89.0.262353049287.issue19914@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like the issue comes from the "more" system command, used as a pager for the documentation. When the OEM code page is set to 65001 (ex: type "chcp 65001" in a Windows console), "more document.txt" does nothing (display nothing and exit).

Try commamands:
---
more document.txt
# works fine
chcp 65001
more document.txt
# no output
---

It might be related to this:
http://stackoverflow.com/questions/3401802/codepage-850-works-65001-fails-there-is-no-response-to-call-foo-cmd-interna
History
Date User Action Args
2013-12-10 10:32:12vstinnersetrecipients: + vstinner, tim.golden, r.david.murray, brian.curtin, BreamoreBoy, hct
2013-12-10 10:32:12vstinnersetmessageid: <1386671532.89.0.262353049287.issue19914@psf.upfronthosting.co.za>
2013-12-10 10:32:12vstinnerlinkissue19914 messages
2013-12-10 10:32:12vstinnercreate