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
/
internal
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-0/+9
*
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Victor Stinner
2020-04-14
3
-102/+101
*
bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (G...
Dong-hee Na
2020-04-14
3
-3/+7
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-1/+2
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
3
-5/+6
*
bpo-40241: Add pycore_interp.h header (GH-19499)
Victor Stinner
2020-04-13
2
-165/+184
*
bpo-40268: Add pycore_runtime.h header file (GH-19493)
Victor Stinner
2020-04-13
2
-121/+144
*
bpo-40241: Add pycore_gc.h header file (GH-19494)
Victor Stinner
2020-04-13
2
-1/+71
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
1
-0/+4
*
bpo-40082: trip_signal() uses the main interpreter (GH-19441)
Victor Stinner
2020-04-08
2
-6/+11
*
bpo-37127: Remove _pending_calls.finishing (GH-19439)
Victor Stinner
2020-04-08
1
-1/+0
*
bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436)
Victor Stinner
2020-04-08
1
-3/+4
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
1
-0/+22
*
bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)
Victor Stinner
2020-04-07
1
-1/+10
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
1
-0/+7
*
bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184)
Victor Stinner
2020-03-26
1
-0/+2
*
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
Victor Stinner
2020-03-26
1
-0/+24
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
1
-4/+0
*
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
Victor Stinner
2020-03-20
1
-2/+8
*
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
Victor Stinner
2020-03-20
1
-1/+27
*
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
Victor Stinner
2020-03-19
1
-4/+4
*
bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061)
Victor Stinner
2020-03-18
1
-3/+1
*
bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049)
Victor Stinner
2020-03-18
1
-4/+2
*
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
Victor Stinner
2020-03-18
2
-1/+3
*
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
Victor Stinner
2020-03-17
2
-9/+14
*
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner
2020-03-13
1
-0/+60
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
2
-3/+1
*
bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908)
Victor Stinner
2020-03-10
1
-1/+1
*
bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891)
Victor Stinner
2020-03-09
1
-0/+1
*
bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884)
Victor Stinner
2020-03-09
1
-0/+2
*
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
Victor Stinner
2020-03-06
1
-6/+17
*
bpo-39796: Fix _warnings module initialization (GH-18739)
Victor Stinner
2020-03-02
1
-0/+2
*
bpo-39573: Add Py_IS_TYPE() function (GH-18488)
Dong-hee Na
2020-02-13
1
-1/+1
*
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
Victor Stinner
2020-02-12
1
-0/+23
*
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
Victor Stinner
2020-02-12
1
-0/+73
*
bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368)
Victor Stinner
2020-02-05
1
-0/+1
*
Add PyInterpreterState.fs_codec.utf8 (GH-18367)
Victor Stinner
2020-02-05
1
-0/+1
*
bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346)
Victor Stinner
2020-02-05
1
-0/+34
*
bpo-39542: Move object.h debug functions to internal C API (GH-18331)
Victor Stinner
2020-02-03
1
-0/+9
*
bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)
Victor Stinner
2020-01-30
1
-0/+1
*
bpo-39372: Clean header files of declared interfaces with no implementations ...
Pablo Galindo
2020-01-18
1
-2/+0
*
bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)
Victor Stinner
2020-01-13
1
-1/+1
*
Move comment about permanent generation to gcmodule.c (GH-17718)
Pablo Galindo
2019-12-27
1
-36/+0
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
2
-2/+14
*
bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)
Victor Stinner
2019-12-06
1
-1/+0
*
bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351)
Victor Stinner
2019-11-22
1
-1/+0
*
bpo-38858: _PyImport_FixupExtensionObject() handles subinterpreters (GH-17350)
Victor Stinner
2019-11-22
1
-0/+6
*
bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330)
Victor Stinner
2019-11-22
1
-1/+1
*
bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)
Victor Stinner
2019-11-20
1
-0/+2
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
1
-2/+0
[next]