From: Terry Jan Reedy Date: Sat, 14 Jan 2012 05:06:37 +0000 (-0500) Subject: #11633 about buffering of print X-Git-Tag: v2.7.3rc1~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=150122a5a2b468f847c5f0e07ad816624123b585;p=thirdparty%2FPython%2Fcpython.git #11633 about buffering of print --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 991093e34435..739350b2cdff 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -910,7 +910,9 @@ available. They are listed here in alphabetical order. *end*. 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. + is not present or ``None``, :data:`sys.stdout` will be used. Output buffering + is determined by *file*. Use ``file.flush()`` to ensure, for instance, + immediate appearance on a screen. .. note::