summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/functions.rst')
-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 3ef01cc..c845283 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -960,8 +960,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)