diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-11-25 08:30:56 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-11-25 08:30:56 (GMT) |
commit | 0e524047e2f57f3150845b947af475c72f0e1724 (patch) | |
tree | ae84500e390129eeb4c7262c9c14d604d2254dd7 /Objects | |
parent | 37b70bb908261778eec7d074f2ea6e558508f738 (diff) | |
download | cpython-0e524047e2f57f3150845b947af475c72f0e1724.zip cpython-0e524047e2f57f3150845b947af475c72f0e1724.tar.gz cpython-0e524047e2f57f3150845b947af475c72f0e1724.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 1e9570c..ba98a30 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" |