summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-07-26 09:36:25 (GMT)
committerGeorg Brandl <georg@python.org>2007-07-26 09:36:25 (GMT)
commitc473149a5a93e4648b559023e5420b07e2832b4d (patch)
tree817166af09a4440643164e8a2c55ceb7d2ea0eb1
parent254b8f9096afcc8ee761c3656798767c27da7800 (diff)
downloadcpython-c473149a5a93e4648b559023e5420b07e2832b4d.zip
cpython-c473149a5a93e4648b559023e5420b07e2832b4d.tar.gz
cpython-c473149a5a93e4648b559023e5420b07e2832b4d.tar.bz2
tabs, newlines and crs are valid XML characters.
-rw-r--r--Doc/lib/libxmlrpclib.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libxmlrpclib.tex b/Doc/lib/libxmlrpclib.tex
index 062cf9f..fdd4e72 100644
--- a/Doc/lib/libxmlrpclib.tex
+++ b/Doc/lib/libxmlrpclib.tex
@@ -94,7 +94,8 @@ When passing strings, characters special to XML such as \samp{<},
\samp{>}, and \samp{\&} will be automatically escaped. However, it's
the caller's responsibility to ensure that the string is free of
characters that aren't allowed in XML, such as the control characters
-with ASCII values between 0 and 31; failing to do this will result in
+with ASCII values between 0 and 31 (except, of course, tab, newline and
+carriage return); failing to do this will result in
an XML-RPC request that isn't well-formed XML. If you have to pass
arbitrary strings via XML-RPC, use the \class{Binary} wrapper class
described below.