summaryrefslogtreecommitdiffstats
path: root/Objects/descrobject.c
Commit message (Expand)AuthorAgeFilesLines
* Make properties discoverable from Python:Tim Peters2001-09-241-25/+56
* Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum2001-09-201-7/+22
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-10/+23
* Rename 'getset' to 'property'.Guido van Rossum2001-09-061-23/+23
* Make getset subclassable.Guido van Rossum2001-08-301-1/+1
* getset_init(): the function name in the PyArg_ParseTuple() formatGuido van Rossum2001-08-241-1/+1
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-241-10/+8
* Change the getset type to take an optional third function argument:Guido van Rossum2001-08-241-9/+21
* getset_descr_set(): guard against deletion (indicated by a set callGuido van Rossum2001-08-241-1/+4
* getset_init(): make the arguments optional.Guido van Rossum2001-08-241-3/+11
* Add new built-in type 'getset' (PyGetSet_Type).Guido van Rossum2001-08-231-0/+135
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-22/+10
* Subtle change to make None.__class__ work:Guido van Rossum2001-08-161-2/+2
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+854