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
*
[3.13] bpo-24766: doc= argument to subclasses of property not handled correct...
Miss Islington (bot)
2024-06-11
1
-15/+4
*
gh-117376: Partial implementation of deferred reference counting (#117696)
Sam Gross
2024-04-12
1
-0/+1
*
gh-117764: Fix and add signatures for many builtins (GH-117769)
Serhiy Storchaka
2024-04-12
1
-4/+5
*
gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)
Serhiy Storchaka
2024-03-22
1
-1/+1
*
gh-101860: Expose __name__ on property (GH-101876)
Eugene Toder
2024-02-20
1
-7/+66
*
gh-115618: Remove improper Py_XDECREFs in property methods (GH-115619)
Serhiy Storchaka
2024-02-17
1
-3/+0
*
gh-114626: add PyCFunctionFast and PyCFunctionFastWithKeywords (GH-114627)
David Hewitt
2024-02-15
1
-2/+2
*
gh-111178: Avoid calling functions from incompatible pointer types in descrob...
Christopher Chavez
2024-01-02
1
-106/+147
*
gh-111999: Add signatures and improve docstrings for builtins (GH-112000)
Serhiy Storchaka
2023-11-13
1
-0/+3
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+1
*
gh-106213: Make Emscripten trampolines work with JSPI (GH-106219)
Hood Chatham
2023-09-15
1
-19/+1
*
gh-84805: Autogenerate signature for METH_NOARGS and METH_O extension functio...
Serhiy Storchaka
2023-08-11
1
-3/+7
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-9/+9
*
gh-106320: Move _PyMethodWrapper_Type to internal C API (#107064)
Victor Stinner
2023-07-22
1
-1/+1
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-1/+1
*
gh-106084: Remove _PyObject_CallMethod() function (#106159)
Victor Stinner
2023-06-27
1
-0/+1
*
gh-106084: Remove _PyObject_RealIsInstance() function (#106106)
Victor Stinner
2023-06-26
1
-0/+1
*
gh-106084: Remove old PyObject call aliases (#106085)
Victor Stinner
2023-06-26
1
-3/+3
*
gh-98963: Restore the ability to have a dict-less property. (#105262)
Gregory P. Smith
2023-06-05
1
-8/+37
*
gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)
Petr Viktorin
2023-05-04
1
-0/+6
*
GH-100942: Fix incorrect cast in property_copy(). (#100965)
Raymond Hettinger
2023-01-12
1
-1/+3
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-2/+1
*
gh-99443: `descr_set_trampoline_call` return type should be `int` not `PyObje...
Hood Chatham
2022-11-16
1
-1/+1
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99332)
Victor Stinner
2022-11-10
1
-31/+15
*
gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...
Serhiy Storchaka
2022-10-05
1
-1/+1
*
gh-87995: Make MappingProxyType hashable (GH-94252)
Serhiy Storchaka
2022-06-28
1
-1/+7
*
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin
2022-06-17
1
-10/+1
*
bpo-41287: Handle `doc` argument of `property.__init__` in subclasses (#23205)
Sergei Izmailov
2022-05-29
1
-18/+35
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-0/+1
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-9/+9
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-1/+1
*
bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)
Christian Heimes
2022-03-30
1
-7/+30
*
bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)
Irit Katriel
2022-03-14
1
-3/+3
*
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
[next]