From: Terry Jan Reedy Date: Wed, 11 Jan 2012 19:09:49 +0000 (-0500) Subject: Closes #11633 Clarify print buffering. X-Git-Tag: v3.2.3rc1~196 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e247928fedde92e27801887857841f0975915d12;p=thirdparty%2FPython%2Fcpython.git Closes #11633 Clarify print buffering. --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index e5d4a99c95f1..ff6d1c00cde9 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -954,7 +954,9 @@ are always 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 ``sys.stdout.flush()`` to ensure immediate + appearance on a screen. .. function:: property(fget=None, fset=None, fdel=None, doc=None)