Closes #11633 Clarify print buffering.

This commit is contained in:
Terry Jan Reedy 2012-01-11 14:09:49 -05:00
parent f4ec3c5a92
commit e247928fed
1 changed files with 3 additions and 1 deletions

View File

@ -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)