From: Antoine Pitrou Date: Sun, 31 Jan 2010 22:26:41 +0000 (+0000) Subject: Note: the issue was fixed in an earlier commit. X-Git-Tag: v2.6.5rc1~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22697c0c72f0c94b353ab0ea70e972c4b10acbe6;p=python Note: the issue was fixed in an earlier commit. Blocked revisions 77890 via svnmerge ........ r77890 | antoine.pitrou | 2010-01-31 23:26:04 +0100 (dim., 31 janv. 2010) | 7 lines - Issue #6939: Fix file I/O objects in the `io` module to keep the original file position when calling `truncate()`. It would previously change the file position to the given argument, which goes against the tradition of ftruncate() and other truncation APIs. Patch by Pascal Chambon. ........ ---