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: 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
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
3
-6/+5
*
bpo-36854: gcmodule.c gets its state from tstate (GH-17285)
Victor Stinner
2019-11-20
2
-5/+7
*
bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)
Victor Stinner
2019-11-20
1
-2/+2
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
2
-9/+8
*
bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)
Victor Stinner
2019-11-20
2
-1/+2
*
bpo-38644: Add _PyEval_EvalCode() (GH-17183)
Victor Stinner
2019-11-16
1
-0/+10
*
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner
2019-11-14
1
-0/+39
*
bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)
Victor Stinner
2019-11-14
1
-0/+9
*
bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080)
Victor Stinner
2019-11-07
1
-1/+2
*
bpo-36876: Moved Parser/listnode.c statics to interpreter state. (GH-16328)
Vinay Sajip
2019-11-07
1
-0/+9
*
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner
2019-11-05
1
-0/+6
*
bpo-38392: Only declare visit_validate() if Py_DEBUG is defined (GH-16689)
Victor Stinner
2019-10-10
1
-1/+1
*
bpo-36389: Fix _PyBytesWriter in release mode (GH-16624)
Victor Stinner
2019-10-07
1
-0/+15
*
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner
2019-10-07
2
-5/+7
[next]