Commit 0156247f authored by Gregory P. Smith's avatar Gregory P. Smith

Remove an errant extra \ within a docstring.

parent 55b64541
...@@ -1523,7 +1523,7 @@ PyDoc_STRVAR(property_doc, ...@@ -1523,7 +1523,7 @@ PyDoc_STRVAR(property_doc,
"class C(object):\n" "class C(object):\n"
" @property\n" " @property\n"
" def x(self):\n" " def x(self):\n"
" \"\I am the 'x' property.\"\n" " \"I am the 'x' property.\"\n"
" return self._x\n" " return self._x\n"
" @x.setter\n" " @x.setter\n"
" def x(self, value):\n" " def x(self, value):\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment