mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Remove an errant extra \ within a docstring.
This commit is contained in:
commit
65482570f1
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue