| Commit message (Expand) | Author | Age | Files | Lines |
* | Python 3.9.0a2v3.9.0a2 | Łukasz Langa | 2019-12-18 | 1 | -2/+2 |
|
|
* | 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-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard... | Sergey Fedoseev | 2019-12-05 | 1 | -4/+4 |
|
|
* | bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) | Victor Stinner | 2019-11-23 | 1 | -11/+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 | 2 | -1/+6 |
|
|
* | bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330) | Victor Stinner | 2019-11-22 | 1 | -1/+1 |
|
|
* | Produce cleaner bytecode for 'with' and 'async with' by generating separate c... | Mark Shannon | 2019-11-21 | 1 | -6/+2 |
|
|
* | 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 | 3 | -6/+0 |
|
|
* | bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287) | Victor Stinner | 2019-11-20 | 3 | -6/+5 |
|
|
* | bpo-38835: Exclude PyFPE macros from the stable API (GH-17228) | Victor Stinner | 2019-11-20 | 1 | -0/+3 |
|
|
* | 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 |
|
|
* | Post 3.9.0a1 | Łukasz Langa | 2019-11-20 | 1 | -1/+1 |
|
|
* | Merge tag 'v3.9.0a1' | Łukasz Langa | 2019-11-20 | 1 | -2/+2 |
|\ |
|
| * | Python 3.9.0a1v3.9.0a1 | Łukasz Langa | 2019-11-19 | 1 | -2/+2 |
|
|
* | | bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266) | Victor Stinner | 2019-11-20 | 2 | -1/+2 |
|/ |
|
* | bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005) | Serhiy Storchaka | 2019-11-16 | 1 | -1/+1 |
|
|
* | bpo-38644: Cleanup ceval.h (GH-17185) | Victor Stinner | 2019-11-16 | 2 | -36/+25 |
|
|
* | 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 | 2 | -10/+46 |
|
|
* | bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) | Victor Stinner | 2019-11-14 | 1 | -0/+9 |
|
|
* | bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052) | Victor Stinner | 2019-11-08 | 1 | -4/+14 |
|
|
* | 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-37645: add new function _PyObject_FunctionStr() (GH-14890) | Jeroen Demeyer | 2019-11-05 | 1 | -0/+1 |
|
|
* | bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) | Victor Stinner | 2019-11-05 | 2 | -4/+14 |
|
|
* | bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) | Victor Stinner | 2019-11-04 | 1 | -14/+31 |
|
|
* | bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046) | Victor Stinner | 2019-11-04 | 2 | -35/+58 |
|
|
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -3/+3 |
|
|
* | bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746) | Hai Shi | 2019-10-21 | 1 | -5/+4 |
|
|
* | bpo-11410: Standardize and use symbol visibility attributes across POSIX and ... | Vinay Sajip | 2019-10-15 | 2 | -11/+43 |
|
|
* | 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 | 4 | -15/+11 |
|
|
* | bpo-38353: getpath.c: allocates strings on the heap (GH-16585) | Victor Stinner | 2019-10-04 | 1 | -3/+2 |
|
|
* | bpo-38266: Revert bpo-37878: Make PyThreadState_DeleteCurrent() Internal (GH-... | Joannah Nanjekye | 2019-10-04 | 1 | -0/+1 |
|
|
* | bpo-38353: Fix compiler warning in internal headers (GH-16573) | Victor Stinner | 2019-10-04 | 3 | -16/+16 |
|
|
* | bpo-38353: Fix compiler warning in pycore_initconfig.h (GH-16570) | Victor Stinner | 2019-10-03 | 1 | -2/+2 |
|
|
* | bpo-38353: Cleanup includes in the internal C API (GH-16548) | Victor Stinner | 2019-10-02 | 12 | -29/+21 |
|
|
* | bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509) | Victor Stinner | 2019-10-01 | 2 | -3/+3 |
|
|
* | bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508) | Victor Stinner | 2019-10-01 | 2 | -12/+4 |
|
|
* | bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (... | Yury Selivanov | 2019-09-30 | 1 | -0/+2 |
|
|
* | bpo-38317: Fix PyConfig.warnoptions priority (GH-16478) | Victor Stinner | 2019-09-29 | 3 | -3/+6 |
|
|
* | bpo-38304: Add PyConfig.struct_size (GH-16451) | Victor Stinner | 2019-09-28 | 2 | -13/+16 |
|
|
* | bpo-38234: Py_Initialize() sets global path configuration (GH-16421) | Victor Stinner | 2019-09-26 | 1 | -1/+1 |
|
|
* | bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402) | Victor Stinner | 2019-09-26 | 1 | -4/+11 |
|
|