From 0e524047e2f57f3150845b947af475c72f0e1724 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Mon, 25 Nov 2013 00:30:56 -0800 Subject: [PATCH] Remove an errant extra \ within a docstring. --- Objects/descrobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 1e9570c34a2..ba98a30c144 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -1523,7 +1523,7 @@ PyDoc_STRVAR(property_doc, "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"