]> granicus.if.org Git - python/commitdiff
bpo-29791: Clarify that flush is keyword-only argument (#1093)
authorBerker Peksag <berker.peksag@gmail.com>
Thu, 13 Apr 2017 12:48:18 +0000 (15:48 +0300)
committerGitHub <noreply@github.com>
Thu, 13 Apr 2017 12:48:18 +0000 (15:48 +0300)
Reported by Lucio Ricardo Montero Valenzuela.

Doc/library/functions.rst

index 90fb07af227d9879bbab84671a654e248fc77260..9126535eecb85c1b009d5d7f18414a6acb4c8960 100644 (file)
@@ -1125,7 +1125,7 @@ are always available.  They are listed here in alphabetical order.
 .. function:: print(*objects, sep=' ', end='\\n', file=sys.stdout, flush=False)
 
    Print *objects* to the text stream *file*, separated by *sep* and followed
-   by *end*.  *sep*, *end* and *file*, if present, must be given as keyword
+   by *end*.  *sep*, *end*, *file* and *flush*, if present, must be given as keyword
    arguments.
 
    All non-keyword arguments are converted to strings like :func:`str` does and