diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-11-25 00:31:31 -0800 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-11-25 00:31:31 -0800 |
commit | 65482570f1fa660bd95e1daf4ecc6acd65f0d34e (patch) | |
tree | 7a215ae3100aff9e614061172e654d5c67bfb918 /Objects/descrobject.c | |
parent | d476ab1276abc66a5cf3379bf4a2065464d4a530 (diff) | |
parent | 0e524047e2f57f3150845b947af475c72f0e1724 (diff) | |
download | cpython-git-65482570f1fa660bd95e1daf4ecc6acd65f0d34e.tar.gz |
Remove an errant extra \ within a docstring.
Diffstat (limited to 'Objects/descrobject.c')
-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 2f0e796e16..312fc402d3 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" |