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
/
object.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-34/+34
*
bpo-39573: Add Py_SET_REFCNT() function (GH-18389)
Victor Stinner
2020-02-07
1
-4/+5
*
bpo-39573: Use Py_REFCNT() macro (GH-18388)
Victor Stinner
2020-02-06
1
-18/+18
*
bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)
Victor Stinner
2020-02-05
1
-1/+1
*
bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363)
Victor Stinner
2020-02-05
1
-4/+8
*
bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361)
Victor Stinner
2020-02-05
1
-2/+0
*
bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346)
Victor Stinner
2020-02-05
1
-1/+17
*
bpo-39542: Simplify _Py_NewReference() (GH-18332)
Victor Stinner
2020-02-03
1
-16/+5
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-126/+0
*
bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)
Victor Stinner
2020-01-30
1
-3/+3
*
bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)
Victor Stinner
2020-01-30
1
-0/+6
*
bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258)
Victor Stinner
2020-01-30
1
-30/+30
*
Remove deadcode in _Py_inc_count() (GH-18257)
Victor Stinner
2020-01-29
1
-2/+0
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
1
-7/+13
*
bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)
Jeroen Demeyer
2019-11-05
1
-0/+58
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-04
1
-28/+42
*
bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-...
Pablo Galindo
2019-10-07
1
-1/+4
*
bpo-36389: Add newline to _PyObject_AssertFailed() (GH-16629)
Victor Stinner
2019-10-07
1
-0/+3
*
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner
2019-10-07
1
-38/+33
*
bpo-38070: Enhance _PyObject_Dump() (GH-16243)
Victor Stinner
2019-09-17
1
-6/+7
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-1/+1
*
bpo-37340: remove free_list for bound method objects (GH-14232)
Inada Naoki
2019-07-26
1
-2/+0
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-5/+5
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
1
-4/+1
*
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Jeroen Demeyer
2019-05-28
1
-2/+1
*
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner
2019-05-27
1
-5/+5
*
bpo-36785: PEP 574 implementation (GH-7076)
Antoine Pitrou
2019-05-26
1
-0/+1
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+8
*
bpo-36763: Add _PyInitError functions (GH-13395)
Victor Stinner
2019-05-17
1
-0/+1
*
bpo-36766: Typos in docs and code comments (GH-13116)
penguindustin
2019-05-06
1
-1/+1
*
bpo-36594: Fix incorrect use of %p in format strings (GH-12769)
Zackery Spytz
2019-05-06
1
-5/+5
*
bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993)
Zackery Spytz
2019-04-28
1
-1/+3
*
bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)
Victor Stinner
2019-04-12
1
-1/+30
*
bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782)
Victor Stinner
2019-04-11
1
-5/+4
*
bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770)
Victor Stinner
2019-04-11
1
-8/+7
*
bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)
Eddie Elizondo
2019-03-27
1
-3/+5
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-15
1
-0/+2
*
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-03-04
1
-2/+0
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-01
1
-0/+2
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-6/+25
*
bpo-35713: Reorganize sys module initialization (GH-11658)
Victor Stinner
2019-01-23
1
-1/+1
*
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner
2019-01-22
1
-192/+75
*
Remove an unused variable after bpo-35444. (GH-11117)
Serhiy Storchaka
2018-12-11
1
-1/+0
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-17/+0
*
bpo-9263: Fix _PyObject_Dump() for freed object (#10661)
Victor Stinner
2018-11-22
1
-0/+5
*
bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642)
Victor Stinner
2018-11-21
1
-10/+14
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
RĂ©mi Lapeyre
2018-11-06
1
-0/+9
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-2/+2
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-2/+2
[prev]
[next]