Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-94286 Fix documentation of print default param (GH-94297)
(cherry picked from commit 2db55e0)

Co-authored-by: Nouran Ali <nouranalimohammed@gmail.com>
  • Loading branch information
nouranali authored and miss-islington committed Nov 6, 2022
commit 7531de866312ce44311d7aeac590fbb3e9847a79
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ are always available. They are listed here in alphabetical order.
supported.


.. function:: print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
.. function:: print(*objects, sep=' ', end='\n', file=None, flush=False)

Print *objects* to the text stream *file*, separated by *sep* and followed
by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as keyword
Expand Down