summaryrefslogtreecommitdiff
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Remove unused suspicious rule in the docsv3.10.0a6Pablo Galindo2021-03-011-2/+2
* bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (G...Jozef Grajciar2021-03-011-1/+3
* bpo-37146: Deactivate opcode cache only when using huntrleaks in the test sui...Pablo Galindo2021-02-281-0/+2
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-266-6/+76
* bpo-43239: Export PyCFunction_New with PyAPI_FUNC (GH-24551)Petr Viktorin2021-02-231-0/+6
* bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)Pablo Galindo2021-02-201-3/+6
* bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner2021-02-201-1/+4
* bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)Nicholas Sim2021-02-196-5/+5
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-195-36/+36
* bpo-43270: Remove private _PyErr_OCCURRED() macro (GH-24579)Victor Stinner2021-02-191-6/+0
* bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)Victor Stinner2021-02-191-2/+2
* bpo-40522: Replace PyThreadState_GET() with PyThreadState_Get() (GH-24575)Victor Stinner2021-02-192-5/+5
* bpo-43268: Replace _PyThreadState_GET() with _PyInterpreterState_GET() (GH-24...Victor Stinner2021-02-192-10/+7
* bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)Victor Stinner2021-02-182-3/+4
* bpo-35134: Move Include/{pyarena.h,pyctype.h} to Include/cpython/ (GH-24550)Nicholas Sim2021-02-173-2/+2
* bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)Erlend Egeberg Aasland2021-02-171-4/+0
* bpo-40170: Always define PyIter_Check() as a function (GH-24548)Erlend Egeberg Aasland2021-02-162-7/+1
* bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988)Nicholas Sim2021-02-162-4/+1
* bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)Erlend Egeberg Aasland2021-02-161-1/+1
* bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)Erlend Egeberg Aasland2021-02-151-2/+5
* bpo-43166: Disable ceval.c optimisations for Windows debug builds (GH-24485)Steve Dower2021-02-091-3/+3
* bpo-35295: Remove outdated comment. (GH-24453)Inada Naoki2021-02-051-7/+0
* Post 3.10.0a5Pablo Galindo2021-02-031-1/+1
* Fix Sphynx syntax in the memory.rst documentv3.10.0a5Pablo Galindo2021-02-021-2/+2
* bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)Mark Shannon2021-02-013-18/+7
* bpo-43030: Fixed a compiler warning in Py_UNICODE_ISSPACE with signed wchar_t...Serhiy Storchaka2021-01-311-1/+1
* bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...Mark Shannon2021-01-293-13/+24
* bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)Victor Stinner2021-01-272-1/+7
* bpo-40176: Improve error messages for unclosed string literals (GH-19346)Batuhan Taskaya2021-01-201-2/+0
* bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)Victor Stinner2021-01-191-1/+1
* bpo-42923: Dump extension modules on fatal error (GH-24207)Victor Stinner2021-01-182-0/+8
* bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)Victor Stinner2021-01-181-7/+3
* bpo-41994: Fix refcount issues in Python/import.c (GH-22632)Serhiy Storchaka2021-01-122-7/+0
* bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193)Victor Stinner2021-01-121-0/+4
* bpo-41798: Allocate _decimal extension module C API on the heap (GH-24117)Erlend Egeberg Aasland2021-01-061-1/+3
* bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)Mark Shannon2021-01-051-6/+1
* Post 3.10.0a4Pablo Galindo2021-01-041-1/+1
* Python 3.10.0a4v3.10.0a4Pablo Galindo2021-01-041-2/+2
* bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999)Petr Viktorin2020-12-291-3/+3
* bpo-40521: Per-interpreter interned strings (GH-20085)Victor Stinner2020-12-261-0/+11
* bpo-42745: Make the type cache per-interpreter (GH-23947)Victor Stinner2020-12-263-1/+26
* bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)Victor Stinner2020-12-263-3/+18
* bpo-39465: Add pycore_atomic_funcs.h header (GH-20766)Victor Stinner2020-12-232-3/+97
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-1/+1
* bpo-42639: Move atexit state to PyInterpreterState (GH-23763)Victor Stinner2020-12-152-4/+18
* bpo-42639: atexit now logs callbacks exceptions (GH-23771)Victor Stinner2020-12-142-1/+3
* bpo-42639: Cleanup atexitmodule.c (GH-23770)Victor Stinner2020-12-142-7/+2
* bpo-42591: Export missing Py_FrozenMain() symbol (GH-23730)Victor Stinner2020-12-101-0/+2
* bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)Victor Stinner2020-12-092-0/+10
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-091-4/+0