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
/
Include
/
cpython
/
object.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.12] gh-91051: fix segfault when using all 8 type watchers (GH-107853) (#10...
Miss Islington (bot)
2023-08-16
1
-1/+1
*
[3.12] gh-105227: Add PyType_GetDict() (GH-105747) (#106600)
Miss Islington (bot)
2023-07-10
1
-0/+1
*
gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)
Petr Viktorin
2023-05-04
1
-0/+1
*
gh-103091: Add PyUnstable_Type_AssignVersionTag (#103095)
Brett Simmers
2023-04-24
1
-0/+7
*
GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)
Brandt Bucher
2023-03-29
1
-0/+11
*
gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)
Eric Snow
2023-03-21
1
-0/+1
*
gh-102304: Move _Py_RefTotal to _PyRuntimeState (gh-102543)
Eric Snow
2023-03-20
1
-1/+4
*
gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)
Eric Snow
2023-03-08
1
-0/+1
*
gh-59956: Allow the "Trashcan" Mechanism to Work Without a Thread State (gh-1...
Eric Snow
2023-01-23
1
-1/+1
*
gh-98724: Fix Py_CLEAR() macro side effects (#99100) (#100070)
Victor Stinner
2022-12-07
1
-20/+51
*
Revert "gh-98724: Fix Py_CLEAR() macro side effects" (#99737)
Victor Stinner
2022-11-24
1
-24/+20
*
GH-90699: disallow `_Py_IDENTIFIER` in core code (GH-99210)
Kumar Aditya
2022-11-09
1
-2/+2
*
gh-98724: Fix Py_CLEAR() macro side effects (#99100)
Victor Stinner
2022-11-09
1
-20/+24
*
gh-98410: move getbufferproc and releasebufferproc to buffer.h (#31158)
David Hewitt
2022-10-31
1
-4/+0
*
gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)
Carl Meyer
2022-10-21
1
-0/+11
*
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
Petr Viktorin
2022-08-08
1
-3/+0
*
gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)
Eric Snow
2022-08-05
1
-3/+2
*
GH-95245: Store object values and dict pointers in single tagged pointer. (GH...
Mark Shannon
2022-08-01
1
-0/+4
*
gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)
Eric Snow
2022-07-29
1
-1/+1
*
gh-94673: Add Per-Interpreter Storage for Static Builtin Types (#95255)
Eric Snow
2022-07-26
1
-0/+1
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
1
-6/+6
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
1
-0/+8
*
bpo-45459: C API uses type names rather than structure names (GH-31528)
Victor Stinner
2022-02-24
1
-10/+10
*
bpo-45459: Add pytypedefs.h header file (GH-31527)
Victor Stinner
2022-02-24
1
-5/+0
*
bpo-45459: Rename buffer.h to pybuffer.h (#31201)
Victor Stinner
2022-02-22
1
-2/+0
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-1/+12
*
bpo-45459: Add Py_buffer to limited API (GH-29991)
Christian Heimes
2022-02-02
1
-49/+2
*
bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)
Victor Stinner
2022-01-27
1
-4/+0
*
bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...
Mark Shannon
2021-12-07
1
-1/+0
*
bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...
Petr Viktorin
2021-10-21
1
-0/+1
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
1
-0/+1
*
bpo-44874: deprecate Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SAFE_END (GH-27693)
Irit Katriel
2021-08-18
1
-4/+13
*
bpo-39947: Remove old private trashcan C API functions (GH-26869)
Victor Stinner
2021-06-23
1
-14/+2
*
bpo-43908: Document Static Types in the C API (GH-25710)
Victor Stinner
2021-04-29
1
-0/+2
*
bpo-40522: Replace PyThreadState_GET() with PyThreadState_Get() (GH-24575)
Victor Stinner
2021-02-19
1
-1/+1
*
bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)
Victor Stinner
2020-12-25
1
-3/+4
*
bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235)
Hai Shi
2020-11-24
1
-1/+3
*
bpo-40170: Fix PyType_Ready() refleak on static type (GH-23236)
Victor Stinner
2020-11-11
1
-0/+1
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-0/+3
*
Add _PyType_GetModuleByDef (GH-22835)
Petr Viktorin
2020-11-03
1
-0/+2
*
bpo-41991: Remove _PyObject_HasAttrId (GH-22629)
Serhiy Storchaka
2020-10-10
1
-1/+0
*
bpo-40989: Make _PyTraceMalloc_NewReference() internal (GH-20915)
Victor Stinner
2020-06-16
1
-4/+0
*
bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18...
Skip Montanaro
2020-06-01
1
-8/+0
*
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner
2020-05-13
1
-1/+1
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
1
-0/+1
*
bpo-39947: Hide implementation detail of trashcan macros (GH-18971)
Victor Stinner
2020-03-13
1
-15/+18
*
bpo-39571: Fix clang warning on PyTypeObject typedef (GH-18385)
Victor Stinner
2020-02-07
1
-2/+2
*
bpo-39542: Convert PyType_Check() to static inline function (GH-18364)
Victor Stinner
2020-02-05
1
-2/+0
*
bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363)
Victor Stinner
2020-02-05
1
-0/+16
[next]