Commit 61b9ac93 authored by Berker Peksag's avatar Berker Peksag Committed by GitHub

bpo-29791: Clarify that flush is keyword-only argument (#1093)

Reported by Lucio Ricardo Montero Valenzuela.
parent 2c0b5c66
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment