diff -r 0b2e199ad088 Lib/tempfile.py --- a/Lib/tempfile.py Tue Apr 29 11:34:15 2014 -0700 +++ b/Lib/tempfile.py Wed Apr 30 19:32:19 2014 +0900 @@ -1,8 +1,8 @@ """Temporary files. This module provides generic, low- and high-level interfaces for -creating temporary files and directories. The interfaces listed -as "safe" just below can be used without fear of race conditions. +creating temporary files and directories. Only the interfaces +listed as "safe" below can be used without fear of race conditions. Those listed as "unsafe" cannot, and are provided for backward compatibility only. @@ -518,7 +518,7 @@ else: # Setting newline="\n" avoids newline translation; # this is important because otherwise on Windows we'd - # hget double newline translation upon rollover(). + # get double newline translation upon rollover(). self._file = _io.StringIO(newline="\n") self._max_size = max_size self._rolled = False