summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2012-01-12 19:49:02 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2012-01-12 19:49:02 (GMT)
commita3d1e2e3420fe6d581c22ec847809c3159bdb880 (patch)
tree29eb6c319d91d71b273bcdb2e175dff064f6cde9 /Doc/library
parent889a5101c2e752b7e4d3d04f1e7e2ebd46837e37 (diff)
downloadcpython-a3d1e2e3420fe6d581c22ec847809c3159bdb880.zip
cpython-a3d1e2e3420fe6d581c22ec847809c3159bdb880.tar.gz
cpython-a3d1e2e3420fe6d581c22ec847809c3159bdb880.tar.bz2
#11633 At least 2 people prefer earlier revision.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/functions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ff6d1c0..f835dcf 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -955,8 +955,8 @@ are always available. They are listed here in alphabetical order.
The *file* argument must be an object with a ``write(string)`` method; if it
is not present or ``None``, :data:`sys.stdout` will be used. Output buffering
- is determined by *file*. Use ``sys.stdout.flush()`` to ensure immediate
- appearance on a screen.
+ is determined by *file*. Use ``file.flush()`` to ensure, for instance,
+ immediate appearance on a screen.
.. function:: property(fget=None, fset=None, fdel=None, doc=None)