summaryrefslogtreecommitdiff
path: root/Objects/descrobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-031-0/+38
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Optimize methoddescr_call(): avoid temporary PyCFunctionVictor Stinner2017-01-181-11/+9
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-1/+1
* Use PyObject_CallFunctionObjArgs()Victor Stinner2016-12-091-1/+1
* Use _PyObject_CallMethodIdObjArgs()Victor Stinner2016-12-091-1/+2
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-1/+1
* Issue #27809: Use _PyObject_FastCallDict()Victor Stinner2016-08-221-24/+10
* Issue #26811: gc.get_objects() no longer contains a broken tuple with NULLSerhiy Storchaka2016-05-041-1/+1
|\
| * Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
| |\
| | * Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
* | | Issue #26811: gc.get_objects() no longer contains a broken tuple with NULLSerhiy Storchaka2016-05-041-15/+15
|/ /
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
|/
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-111-6/+6
|\
| * Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-111-6/+6
* | Issue #24276: Fixed optimization of property descriptor getter.Serhiy Storchaka2015-05-241-4/+21
* | Issue #24064: Help property() support GCRaymond Hettinger2015-05-131-1/+9
* | Issue #24064: Property() docstrings are now writeable.Raymond Hettinger2015-05-131-1/+1
* | Issue #23910: Optimize property() getter calls. Patch by Joe JevnikRaymond Hettinger2015-04-301-1/+9
|/
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-6/+6
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-18/+6
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-19/+36
* Remove an errant extra \ within a docstring.Gregory P. Smith2013-11-251-10/+45
|\
| * mergeRaymond Hettinger2013-11-241-10/+45
| |\
| | * Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou2013-11-231-5/+40
| | * Use Py_intptr_t to store the difference between two pointers, instead of intVictor Stinner2013-05-081-1/+1
| | * Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-251-4/+4
* | | Remove an errant extra \ within a docstring.Gregory P. Smith2013-11-251-1/+1
|/ /
* | Document that @property can incorporate a docstring from the getter method. ...Raymond Hettinger2013-11-241-5/+9
|/
* merge 3.2 (#14699)Benjamin Peterson2012-05-011-63/+209
|\
| * 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
* | fix calling the classmethod descriptor directly (closes #14699)Benjamin Peterson2012-05-011-3/+41
|/
* 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-39/+35
|\
| * #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