summaryrefslogtreecommitdiff
path: root/Objects/descrobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #14386: Expose the dict_proxy internal type as types.MappingProxyTypeVictor Stinner2012-04-161-60/+110
* fix possible NULL dereferenceBenjamin Peterson2011-12-171-1/+3
* improve abstract property support (closes #11610)Benjamin Peterson2011-12-151-1/+38
* Issue #13577: various kinds of descriptors now have a __qualname__ attribute.Antoine Pitrou2011-12-121-0/+51
* Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-1/+1
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-6/+6
* Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-5/+10
* make sure to initialize the method wrapper typeBenjamin Peterson2011-09-011-6/+3
* (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-011-3/+6
|\
| * Issue #9756: When calling a method descriptor or a slot wrapper descriptor, theVictor Stinner2011-05-011-3/+6
| * Merged revisions 87368 via svnmerge fromEzio Melotti2010-12-181-1/+7
| * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-933/+933
| * Merged revisions 76235 via svnmerge fromBenjamin Peterson2009-11-131-13/+16
* | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur...Ezio Melotti2010-12-181-1/+7
* | use the more direct APIBenjamin Peterson2010-12-071-3/+3
* | return views from dict proxy items/values/keys #10630Benjamin Peterson2010-12-071-3/+3
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-2/+2
* | Merged revisions 82317 via svnmerge fromBenjamin Peterson2010-06-281-16/+12
* | Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-933/+933
* | Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-...Benjamin Peterson2009-11-131-13/+16
* | Issue #6151: Make PyDescr_COMMON conform to standard C.Alexandre Vassalotti2009-07-221-15/+15
|/
* Merged revisions 72328 via svnmerge fromGeorg Brandl2009-05-051-1/+0
* Merged revisions 72299 via svnmerge fromR. David Murray2009-05-041-16/+23
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-8/+8
* Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson2009-02-011-15/+61
* 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