diff options
| author | Benjamin Peterson <benjamin@python.org> | 2012-01-12 15:26:20 -0500 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2012-01-12 15:26:20 -0500 |
| commit | 1adbc6f56a7c08b06b42d8eddc5fd76cfa5815c7 (patch) | |
| tree | 41779130dc01520c3b2043711c81f6ad46f8c791 | |
| parent | 0c91392fe6eca0c4b45913645f046536d0f53d19 (diff) | |
| parent | dc41e3f23feafcf81b1c6a2d612e2fcc0ef6b63a (diff) | |
| download | cpython-git-1adbc6f56a7c08b06b42d8eddc5fd76cfa5815c7.tar.gz | |
merge heads
| -rw-r--r-- | Doc/library/functions.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3ef01cc097..c845283293 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) |
