Lines Matching refs:self
48 " def getx(self): return self._x\n"
49 " def setx(self, value): self._x = value\n"
50 " def delx(self): del self._x\n"
57 " def x(self):\n"
59 " return self._x\n"
61 " def x(self, value):\n"
62 " self._x = value\n"
64 " def x(self):\n"
65 " del self._x");
68 property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset,
72 property_init(PyObject *self, PyObject *args, PyObject *kwargs)
113 return_value = property_init_impl((propertyobject *)self, fget, fset, fdel, doc);