summaryrefslogtreecommitdiffstats
path: root/Objects/descrobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-04-151-3/+3
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-1/+1
* Merged revisions 59628-59641 via svnmerge fromChristian Heimes2008-01-011-0/+1
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-151-33/+70
* Rename the internal name of dictproxy -> dict_proxy,Guido van Rossum2007-11-301-1/+1
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-291-6/+6
* Removed iter* methods from dictproxy.Christian Heimes2007-11-291-24/+0
* Merged revisions 58930-58938 via svnmerge fromChristian Heimes2007-11-121-4/+14
* Merged revisions 58886-58929 via svnmerge fromGuido van Rossum2007-11-101-1/+55
* Use unicodeNeal Norwitz2007-08-251-8/+8
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-16/+8
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-111-35/+34
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-2/+5
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-6/+6
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-12/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-11/+14
* Merge the rest of the trunk.Thomas Wouters2006-06-081-7/+19
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-42/+10
* Patch #1434038: property() now uses the getter's docstring if there isGeorg Brandl2006-03-081-0/+12
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-4/+4
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Added proper reflection on instances of <type 'method-wrapper'>, e.g.Armin Rigo2005-11-071-13/+46
* As per discussion on python-dev, descriptors defined in C with a NULL setterBarry Warsaw2005-04-191-2/+2
* Use PyDict_Contains() instead of PySequence_Contains().Raymond Hettinger2003-12-131-2/+2
* Return a bool rather than an int from proxy_has_key().Guido van Rossum2003-10-091-1/+4
* SF patch #798467: Update docstring of has_key for bool changesRaymond Hettinger2003-09-011-1/+1
* property_traverse() should also traverse into prop_doc -- there's noGuido van Rossum2003-04-091-0/+1
* Put proper tests in classmethod_get(). Remove the type argument toGuido van Rossum2003-02-111-16/+47
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* SF 548651: Fix the METH_CLASS implementation.Tim Peters2002-12-091-0/+72
* Added comparison functions to dict proxies.Raymond Hettinger2002-08-311-2/+14
* Make PyDescr_IsData() a macro. It's too simple to be a function.Guido van Rossum2002-08-191-6/+0
* Simple but important optimization for descr_check(): instead of theGuido van Rossum2002-08-191-1/+1
* Allow more docstrings to be removed during compilationNeal Norwitz2002-08-131-9/+11
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-2/+2
* Fold long lines. (Walter, please take note! :-)Guido van Rossum2002-04-131-9/+18
* PyObject_GC_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Add missing methods iterkeys, itervalues and iteritems toWalter Dörwald2002-03-251-6/+26
* SF bug #493561: incorrect format string descrobject.c (Neal Norwitz)Guido van Rossum2001-12-151-2/+2
* Well what do you know. The Python implementation contained the sameGuido van Rossum2001-12-101-2/+2
* Fix the Python property class in a comment right.Guido van Rossum2001-12-101-22/+23
* property_descr_get(): Fix a curious bug in the property() type: whenGuido van Rossum2001-12-101-5/+5
* Methods of built-in types now properly check for keyword argumentsGuido van Rossum2001-10-221-0/+11
* Adding missing "static" declarations (found by "make smelly").Neil Schemenauer2001-10-211-3/+3
* *EXPERIMENTAL* speedup of slot_sq_item. This sped up the followingGuido van Rossum2001-10-031-33/+1
* Add Garbage Collection support to new-style classes (not yet to theirGuido van Rossum2001-10-021-20/+94
* 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