mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Added new decorator syntax to property.__doc__
Guido prefers _x over __x.
This commit is contained in:
parent
03c1d1e9c4
commit
3d4c316f17
1 changed files with 14 additions and 4 deletions
|
|
@ -1268,10 +1268,20 @@ PyDoc_STRVAR(property_doc,
|
|||
"fset is a function for setting, and fdel a function for del'ing, an\n"
|
||||
"attribute. Typical use is to define a managed attribute x:\n"
|
||||
"class C(object):\n"
|
||||
" def getx(self): return self.__x\n"
|
||||
" def setx(self, value): self.__x = value\n"
|
||||
" def delx(self): del self.__x\n"
|
||||
" x = property(getx, setx, delx, \"I'm the 'x' property.\")");
|
||||
" def getx(self): return self._x\n"
|
||||
" def setx(self, value): self._x = value\n"
|
||||
" def delx(self): del self._x\n"
|
||||
" x = property(getx, setx, delx, \"I'm the 'x' property.\")\n"
|
||||
"\n"
|
||||
"Decorators makes defining new or modifying existing properties easy:\n"
|
||||
"class C(object):\n"
|
||||
" @property\n"
|
||||
" def x(self): return self._x\n"
|
||||
" @x.setter\n"
|
||||
" def x(self, value): self._x = value\n"
|
||||
" @x.deleter\n"
|
||||
" def x(self): del self._x\n"
|
||||
);
|
||||
|
||||
static int
|
||||
property_traverse(PyObject *self, visitproc visit, void *arg)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue