Commit 550e4e55 authored by Tim Peters's avatar Tim Peters

SF bug 666444: 'help' makes linefeed only under Win32.

Reverting one of those irritating "security fixes".  fdopen() opens
files in binary mode.  That makes pydoc skip the \r\n on Windows that's
need to make the output readable in the shell.  Screw it.
parent 658375b8
......@@ -1229,8 +1229,8 @@ def pipepager(text, cmd):
def tempfilepager(text, cmd):
"""Page through text by invoking a program on a temporary file."""
import tempfile
(fd, filename) = tempfile.mkstemp()
file = os.fdopen(fd, 'w')
filename = tempfile.mktemp()
file = open(filename, 'w')
file.write(text)
file.close()
try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment