]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
State clearly that truncate() doesn't move the file position,
authorAntoine Pitrou <solipsis@pitrou.net>
Wed, 28 Apr 2010 19:53:35 +0000 (19:53 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Wed, 28 Apr 2010 19:53:35 +0000 (19:53 +0000)
and remove a duplicate of its specification.

Doc/library/io.rst

index cf5e9f766d2179ce88963d824fd7495b15234a88..9f08c25219c32c50fd3ddae460364af953981711 100644 (file)
@@ -319,7 +319,9 @@ I/O Base Classes
    .. method:: truncate(size=None)
 
       Truncate the file to at most *size* bytes.  *size* defaults to the current
-      file position, as returned by :meth:`tell`.
+      file position, as returned by :meth:`tell`.  Note that the current file
+      position isn't changed; if you want to change it to the new end of
+      file, you have to :meth:`seek()` explicitly.
 
    .. method:: writable()
 
@@ -527,11 +529,6 @@ In many situations, buffered I/O streams will provide higher performance
 
       In :class:`BytesIO`, this is the same as :meth:`read`.
 
-   .. method:: truncate([size])
-
-      Truncate the buffer to at most *size* bytes.  *size* defaults to the
-      current stream position, as returned by :meth:`tell`.
-
 
 .. class:: BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE)