Kaydet (Commit) 65482570 authored tarafından Gregory P. Smith's avatar Gregory P. Smith

Remove an errant extra \ within a docstring.

...@@ -1558,7 +1558,7 @@ PyDoc_STRVAR(property_doc, ...@@ -1558,7 +1558,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