summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* GH-95245: Store object values and dict pointers in single tagged pointer. (GH...Mark Shannon2022-08-013-12/+38
* gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)Eric Snow2022-07-293-1/+20
* GH-90081: Run python tracers at full speed (GH-95328)Mark Shannon2022-07-281-2/+3
* gh-95174: Add pthread stubs for WASI (GH-95234)Christian Heimes2022-07-272-0/+91
* gh-95005: Replace PyAccu with PyUnicodeWriter (gh-95006)Aivars Kalvāns2022-07-271-39/+0
* gh-94673: Add Per-Interpreter Storage for Static Builtin Types (#95255)Eric Snow2022-07-263-1/+18
* gh-91247: Use memcpy for list and tuple repeat (#91482)Pieter Eendebak2022-07-262-0/+23
* GH-92678: Expose managed dict clear and visit functions (#95246)Mark Shannon2022-07-251-0/+3
* gh-94673: Add _PyStaticType_InitBuiltin() (#95152)Eric Snow2022-07-253-1/+12
* GH-94851: check refcnt of immortal objects after finalization (GH-95001)Kumar Aditya2022-07-252-1/+4408
* gh-95185: Check recursion depth in the AST constructor (#95186)Pablo Galindo Salgado2022-07-241-0/+2
* GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)Brandt Bucher2022-07-221-188/+0
* GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...Mark Shannon2022-07-181-0/+13
* gh-94731: Revert to C-style casts for _Py_CAST (GH-94782)Petr Viktorin2022-07-141-51/+3
* pycore_interp.h: Fix comment about pytypedefs.h (#93188)Itamar Ostricher2022-07-091-1/+1
* GH-90699: Intern statically allocated strings (GH-93597)Kumar Aditya2022-07-081-0/+609
* GH-90699: Move generated static initializer to pycore_runtime_generated.h (GH...Kumar Aditya2022-07-072-1125/+1139
* gh-94216: add pseudo instructions to the dis/opcodes modules (GH-94241)Irit Katriel2022-07-012-9/+42
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-011-0/+17
* gh-90473: Reduce recursion limit on WASI even further (GH-94333)Christian Heimes2022-06-271-3/+4
* GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)Mark Shannon2022-06-273-83/+89
* gh-87347: Fix PyObject_NEW() regression (#94234)Victor Stinner2022-06-261-2/+2
* gh-93382: Sync up `co_code` changes with 3.11 (GH-94227)Ken Jin2022-06-241-1/+1
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-212-13/+16
* GH-91432: Specialize FOR_ITER (GH-91713)Dennis Sweeney2022-06-216-60/+104
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-2029-143/+147
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-202-1/+32
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-202-25/+29
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-193-13/+23
* gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)Ken Jin2022-06-173-39/+67
* gh-77782: Deprecate global configuration variable (#93943)Victor Stinner2022-06-173-22/+25
* gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942)Victor Stinner2022-06-171-0/+4
* gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)Victor Stinner2022-06-1634-58/+58
* GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)Ken Jin2022-06-143-81/+72
* GH-93516: Store offset of first traceable instruction in code object (GH-93769)Mark Shannon2022-06-141-0/+1
* gh-91321: Fix compatibility with C++ older than C++11 (#93784)Victor Stinner2022-06-141-2/+5
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-143-8/+3
* gh-89653: PEP 670: Macros always cast arguments in cpython/ (#93766)Victor Stinner2022-06-139-92/+28
* gh-91731: Don't define 'static_assert' in C++11 where is a keyword to avoid U...Pablo Galindo Salgado2022-06-131-0/+2
* Remove ANY_VARARGS() macro from the C API (#93764)Victor Stinner2022-06-132-3/+3
* gh-89653: PEP 670: Convert PyFunction macros (#93765)Victor Stinner2022-06-131-16/+39
* GH-90699: use statically allocated strings in typeobject.c (gh-93751)Kumar Aditya2022-06-122-0/+4
* gh-91162: Support splitting of unpacked arbitrary-length tuple over TypeVar a...Serhiy Storchaka2022-06-122-0/+2
* Shrink the LOAD_METHOD cache by one codeunit. (#93537)Mark Shannon2022-06-072-2/+1
* gh-93442: Make C++ version of _Py_CAST work with 0/NULL. (#93500)Neil Schemenauer2022-06-051-0/+14
* gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)Ken Jin2022-06-031-0/+1
* gh-91320: Fix more old-style cast warnings in C++ (#93285)Victor Stinner2022-06-023-4/+4
* gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...Dennis Sweeney2022-05-312-24/+26
* GH-93354: Use exponential backoff to avoid excessive specialization attempts....Mark Shannon2022-05-311-3/+44
* gh-93244: Document Py_PRINT_RAW in PyObject_Print() comment (93245)Will Hawkins2022-05-291-3/+3