[Python-checkins] cpython (3.2): Use raw string for a docstring that uses a backslash

eric.araujo python-checkins at python.org
Mon Mar 5 16:26:02 CET 2012


http://hg.python.org/cpython/rev/8ce8006dfc42
changeset:   75422:8ce8006dfc42
branch:      3.2
parent:      75405:5b88475aae96
user:        Éric Araujo <merwok at netwok.org>
date:        Mon Mar 05 15:45:08 2012 +0100
summary:
  Use raw string for a docstring that uses a backslash

files:
  Lib/xmlrpc/server.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/xmlrpc/server.py b/Lib/xmlrpc/server.py
--- a/Lib/xmlrpc/server.py
+++ b/Lib/xmlrpc/server.py
@@ -1,4 +1,4 @@
-"""XML-RPC Servers.
+r"""XML-RPC Servers.
 
 This module can be used to create simple XML-RPC servers
 by creating a server and either installing functions, a

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list