summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-11-25 08:31:31 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-11-25 08:31:31 (GMT)
commit65482570f1fa660bd95e1daf4ecc6acd65f0d34e (patch)
tree7a215ae3100aff9e614061172e654d5c67bfb918 /Objects
parentd476ab1276abc66a5cf3379bf4a2065464d4a530 (diff)
parent0e524047e2f57f3150845b947af475c72f0e1724 (diff)
downloadcpython-65482570f1fa660bd95e1daf4ecc6acd65f0d34e.zip
cpython-65482570f1fa660bd95e1daf4ecc6acd65f0d34e.tar.gz
cpython-65482570f1fa660bd95e1daf4ecc6acd65f0d34e.tar.bz2
Remove an errant extra \ within a docstring.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/descrobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c
index 2f0e796..312fc40 100644
--- a/Objects/descrobject.c
+++ b/Objects/descrobject.c
@@ -1558,7 +1558,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"