Remove an errant extra \ within a docstring.

This commit is contained in:
Gregory P. Smith 2013-11-25 00:31:31 -08:00
commit 65482570f1

View file

@ -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"