[Python-checkins] r56551 - python/trunk/Doc/lib/libxmlrpclib.tex

georg.brandl python-checkins at python.org
Thu Jul 26 11:36:25 CEST 2007


Author: georg.brandl
Date: Thu Jul 26 11:36:25 2007
New Revision: 56551

Modified:
   python/trunk/Doc/lib/libxmlrpclib.tex
Log:
tabs, newlines and crs are valid XML characters.


Modified: python/trunk/Doc/lib/libxmlrpclib.tex
==============================================================================
--- python/trunk/Doc/lib/libxmlrpclib.tex	(original)
+++ python/trunk/Doc/lib/libxmlrpclib.tex	Thu Jul 26 11:36:25 2007
@@ -94,7 +94,8 @@
 \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.


More information about the Python-checkins mailing list