[Python-checkins] cpython (merge 3.3 -> default): Remove an errant extra \ within a docstring.

gregory.p.smith python-checkins at python.org
Mon Nov 25 09:32:38 CET 2013


http://hg.python.org/cpython/rev/89078a969796
changeset:   87549:89078a969796
parent:      87546:4473a7067fd8
parent:      87548:6cc605e8c270
user:        Gregory P. Smith <greg at krypto.org>
date:        Mon Nov 25 00:31:31 2013 -0800
summary:
  Remove an errant extra \ within a docstring.

files:
  Objects/descrobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/descrobject.c b/Objects/descrobject.c
--- a/Objects/descrobject.c
+++ b/Objects/descrobject.c
@@ -1558,7 +1558,7 @@
 "class C(object):\n"
 "    @property\n"
 "    def x(self):\n"
-"        \"\I am the 'x' property.\"\n"
+"        \"I am the 'x' property.\"\n"
 "        return self._x\n"
 "    @x.setter\n"
 "    def x(self, value):\n"

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


More information about the Python-checkins mailing list