diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-11-25 08:31:31 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-11-25 08:31:31 (GMT) |
commit | 65482570f1fa660bd95e1daf4ecc6acd65f0d34e (patch) | |
tree | 7a215ae3100aff9e614061172e654d5c67bfb918 /Objects | |
parent | d476ab1276abc66a5cf3379bf4a2065464d4a530 (diff) | |
parent | 0e524047e2f57f3150845b947af475c72f0e1724 (diff) | |
download | cpython-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.c | 2 |
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" |