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-46730: Fix refleak and tighten NULL checks (GH-31389)
Christian Heimes
2022-02-17
1
-9/+18
*
bpo-46730: Add more info to @property AttributeError messages (GH-31311)
Alex-Blade
2022-02-16
1
-13/+27
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-22/+13
*
docs: correct outdated MappingProxyType docstrings (#30281)
Joshua Bronson
2022-01-19
1
-3/+3
*
bpo-45385: Fix reference leak from descr_check (#28719)
Dong-hee Na
2021-10-07
1
-39/+37
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-1/+1
*
bpo-44661: Update property_descr_set to use vectorcall if possible. (GH-27206)
Dong-hee Na
2021-07-19
1
-7/+18
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-1/+2
*
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower
2021-04-30
1
-1/+1
*
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman
2021-04-29
1
-1/+1
*
bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)
Erlend Egeberg Aasland
2021-02-16
1
-0/+5
*
bpo-27794: Add `name` attribute to `property` class (GH-23967)
Yurii Karabas
2020-12-30
1
-4/+48
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
1
-4/+4
*
Remove spurious NULL in descrobject.c (GH-20344)
Hai Shi
2020-05-24
1
-1/+0
*
bpo-40273: Reversible mappingproxy (FH-19513)
Zackery Spytz
2020-05-08
1
-0/+9
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
1
-3/+44
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2/+2
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-0/+2
*
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner
2020-03-13
1
-0/+1
*
bpo-39884: Add method name in "bad call flags" error (GH-18944)
Victor Stinner
2020-03-12
1
-1/+2
*
bpo-36144: Update MappingProxyType with PEP 584's operators (#18814)
Brandt Bucher
2020-03-07
1
-1/+25
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-2/+2
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-4/+4
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-7/+7
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
1
-2/+2
*
bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)
Jeroen Demeyer
2019-11-05
1
-28/+29
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-04
1
-14/+20
*
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
[next]