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-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
1
-19/+15
*
bpo-37337: Fix a GCC 9 warning in Objects/descrobject.c (GH-14814)
Zackery Spytz
2019-08-14
1
-1/+1
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-4/+4
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
1
-50/+196
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-3/+2
*
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
Jeroen Demeyer
2019-06-28
1
-7/+14
*
bpo-37151: simplify classmethoddescr_call (GH-13340)
Jeroen Demeyer
2019-06-07
1
-28/+16
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-15/+15
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
1
-4/+4
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-3/+7
*
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Jeroen Demeyer
2019-05-28
1
-2/+4
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+8
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-2/+2
*
bpo-36026: make descr error message consistent (GH-11930)
Inada Naoki
2019-04-01
1
-14/+12
*
bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)
Inada Naoki
2019-03-26
1
-6/+4
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-13/+4
*
bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-7/+7
*
bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)
Victor Stinner
2018-11-25
1
-0/+1
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)
Victor Stinner
2018-11-09
1
-2/+2
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-30156: Remove property_descr_get() optimization (GH-9541)
Victor Stinner
2018-10-01
1
-28/+5
*
bpo-1617161: Make the hash and equality of methods not depending on the value...
Serhiy Storchaka
2018-07-31
1
-18/+15
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-6/+6
*
bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)
Oren Milman
2018-02-13
1
-4/+4
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-1/+1
*
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
[next]