summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-09-15 09:49:57 -0400
committerBenjamin Peterson <benjamin@python.org>2013-09-15 09:49:57 -0400
commit393ea36a9bdcf7f1d33140dea341e794bd1c6135 (patch)
tree7150e99d9e8545a380a705c4c9035aabbd24a7c0 /documentation
parente0841d716953710ab9bca9d1715a710df9c61ca0 (diff)
downloadsix-393ea36a9bdcf7f1d33140dea341e794bd1c6135.tar.gz
escape backslash (fixes #36)
Diffstat (limited to 'documentation')
-rw-r--r--documentation/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/index.rst b/documentation/index.rst
index 9f879c1..cdf9af1 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -243,7 +243,7 @@ Python 2 and 3.
:func:`exec` with them should be avoided.
-.. function:: print_(*args, *, file=sys.stdout, end="\n", sep=" ")
+.. function:: print_(*args, *, file=sys.stdout, end="\\n", sep=" ")
Print *args* into *file*. Each argument will be separated with *sep* and
*end* will be written to the file at the last.