STINNER Victor added the comment:

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

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19914>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to