diff options
author | Georg Brandl <georg@python.org> | 2008-10-04 18:37:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-10-04 18:37:20 (GMT) |
commit | b76a2b130584fefa0baa852fef0f572b21cf3039 (patch) | |
tree | 12cd459e9a9b225ec16bfa6f0104c86ffee6227e /Doc | |
parent | 0df797943cc46af236cce9c15e98c475f7ecccf0 (diff) | |
download | cpython-b76a2b130584fefa0baa852fef0f572b21cf3039.zip cpython-b76a2b130584fefa0baa852fef0f572b21cf3039.tar.gz cpython-b76a2b130584fefa0baa852fef0f572b21cf3039.tar.bz2 |
#4029: fix typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index b016a32..1fdbeec 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -832,7 +832,7 @@ are always available. They are listed here in alphabetical order. must be of integer types, and *y* must be non-negative. -.. function:: print([object, ...][, sep=' '][, end='\n'][, file=sys.stdout]) +.. function:: print([object, ...][, sep=' '][, end='\\n'][, file=sys.stdout]) Print *object*\(s) to the stream *file*, separated by *sep* and followed by *end*. *sep*, *end* and *file*, if present, must be given as keyword |