index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
descrobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-33/+2
*
bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481)
Serhiy Storchaka
2017-09-21
1
-29/+33
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-30534: Fixed error messages when pass keyword arguments (#1901)
Serhiy Storchaka
2017-06-06
1
-1/+1
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-1/+1
*
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615)
Serhiy Storchaka
2017-03-19
1
-105/+121
*
Issue #29263: LOAD_METHOD support for C methods
INADA Naoki
2017-02-02
1
-0/+38
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-4/+2
*
Optimize methoddescr_call(): avoid temporary PyCFunction
Victor Stinner
2017-01-18
1
-11/+9
*
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...
Serhiy Storchaka
2016-12-16
1
-1/+1
*
Use PyObject_CallFunctionObjArgs()
Victor Stinner
2016-12-09
1
-1/+1
*
Use _PyObject_CallMethodIdObjArgs()
Victor Stinner
2016-12-08
1
-1/+2
*
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-1/+1
*
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
*
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-1/+1
*
Issue #27809: Use _PyObject_FastCallDict()
Victor Stinner
2016-08-22
1
-24/+10
*
Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
Serhiy Storchaka
2016-05-04
1
-15/+15
|
\
|
*
Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
Serhiy Storchaka
2016-05-04
1
-15/+15
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
|
\
\
|
|
/
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-1/+1
|
/
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-2/+1
*
Fixed indentation of Python examples in C comments.
Serhiy Storchaka
2015-06-10
1
-6/+6
|
\
|
*
Fixed indentation of Python examples in C comments.
Serhiy Storchaka
2015-06-10
1
-6/+6
*
|
Issue #24276: Fixed optimization of property descriptor getter.
Serhiy Storchaka
2015-05-24
1
-4/+21
*
|
Issue #24064: Help property() support GC
Raymond Hettinger
2015-05-13
1
-1/+9
*
|
Issue #24064: Property() docstrings are now writeable.
Raymond Hettinger
2015-05-13
1
-1/+1
*
|
Issue #23910: Optimize property() getter calls. Patch by Joe Jevnik
Raymond Hettinger
2015-04-30
1
-1/+9
|
/
*
Issue #20530: Argument Clinic's signature format has been revised again.
Larry Hastings
2014-02-09
1
-6/+6
*
Issue #20326: Argument Clinic now uses a simple, unique signature to
Larry Hastings
2014-01-28
1
-18/+6
*
Issue #20189: Four additional builtin types (PyTypeObject,
Larry Hastings
2014-01-24
1
-19/+36
*
Remove an errant extra \ within a docstring.
Gregory P. Smith
2013-11-25
1
-1/+1
|
\
|
*
Remove an errant extra \ within a docstring.
Gregory P. Smith
2013-11-25
1
-1/+1
*
|
merge
Raymond Hettinger
2013-11-24
1
-5/+9
|
\
\
|
|
/
|
*
Document that @property can incorporate a docstring from the getter method. ...
Raymond Hettinger
2013-11-24
1
-5/+9
*
|
Issue #17810: Implement PEP 3154, pickle protocol 4.
Antoine Pitrou
2013-11-23
1
-5/+40
*
|
Use Py_intptr_t to store the difference between two pointers, instead of int
Victor Stinner
2013-05-07
1
-1/+1
*
|
Issue #15422: get rid of PyCFunction_New macro
Andrew Svetlov
2012-12-25
1
-4/+4
|
/
*
merge 3.2 (#14699)
Benjamin Peterson
2012-05-01
1
-3/+41
|
\
|
*
fix calling the classmethod descriptor directly (closes #14699)
Benjamin Peterson
2012-05-01
1
-3/+41
*
|
Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType
Victor Stinner
2012-04-15
1
-60/+110
*
|
fix possible NULL dereference
Benjamin Peterson
2011-12-17
1
-1/+3
*
|
improve abstract property support (closes #11610)
Benjamin Peterson
2011-12-15
1
-1/+38
*
|
Issue #13577: various kinds of descriptors now have a __qualname__ attribute.
Antoine Pitrou
2011-12-12
1
-0/+51
*
|
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
Martin v. Löwis
2011-10-14
1
-1/+1
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-6/+6
*
|
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis
2011-10-10
1
-1/+2
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-5/+10
|
/
*
make sure to initialize the method wrapper type
Benjamin Peterson
2011-09-01
1
-6/+3
*
(Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper
Victor Stinner
2011-05-01
1
-3/+6
|
\
[next]