]> granicus.if.org Git - python/commitdiff
update peek documentation to implementation
authorBenjamin Peterson <benjamin@python.org>
Sun, 14 Jun 2009 14:37:23 +0000 (14:37 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 14 Jun 2009 14:37:23 +0000 (14:37 +0000)
Doc/library/io.rst

index 26285b4fcd8081174dde68a39feb890f42ccdbed..67a8d4d85db7e0869a698fb73c7d1724aaaf8a31 100644 (file)
@@ -504,11 +504,9 @@ Buffered Streams
 
    .. method:: peek([n])
 
-      Return 1 (or *n* if specified) bytes from a buffer without advancing the
-      position.  Only a single read on the raw stream is done to satisfy the
-      call. The number of bytes returned may be less than requested since at
-      most all the buffer's bytes from the current position to the end are
-      returned.
+      Return bytes from the stream without advancing the position.  Only a
+      single read on the raw stream is done to satisfy the call. The number of
+      bytes returned may be less or more than requested.
 
    .. method:: read([n])