summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-301-0/+21
* gh-46845: clean up unused DK_IXSIZE (GH-96405)Matthias Görgens2022-08-301-9/+0
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-251-2/+2
* GH-96177: Move GIL and eval breaker code out of ceval.c into ceval_gil.c. (GH...Mark Shannon2022-08-242-3/+7
* gh-93678: add _testinternalcapi.optimize_cfg() and test utils for compiler op...Irit Katriel2022-08-243-0/+21
* GH-96075: move interned dict under runtime state (GH-96077)Kumar Aditya2022-08-221-0/+2
* GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)Brandt Bucher2022-08-191-14/+14
* Remove dead code in _PyDict_GetItemHint and rename to _PyDict_LookupIndex (GH...Matthias Görgens2022-08-181-1/+1
* GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)Ken Jin2022-08-173-12/+16
* GH-95909: Make `_PyArg_Parser` initialization thread safe (GH-95958)Kumar Aditya2022-08-161-0/+4
* GH-95245: Move weakreflist into the pre-header. (GH-95996)Mark Shannon2022-08-161-3/+3
* Fix typo in internal/pycore_atomic.h (GH-95939)fluesvamp2022-08-131-1/+1
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-112-0/+2312
* gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)Eric Snow2022-08-052-0/+2
* gh-94673: Recover Weaklist Lookup Performance (gh-95544)Eric Snow2022-08-041-0/+33
* GH-95245: Store object values and dict pointers in single tagged pointer. (GH...Mark Shannon2022-08-011-9/+34
* gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)Eric Snow2022-07-292-0/+19
* GH-90081: Run python tracers at full speed (GH-95328)Mark Shannon2022-07-281-2/+3
* 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-262-1/+17
* gh-91247: Use memcpy for list and tuple repeat (#91482)Pieter Eendebak2022-07-262-0/+23
* gh-94673: Add _PyStaticType_InitBuiltin() (#95152)Eric Snow2022-07-252-1/+9
* 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
* 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-011-3/+16
* 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-272-28/+32
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-211-8/+8
* GH-91432: Specialize FOR_ITER (GH-91713)Dennis Sweeney2022-06-215-28/+69
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-208-28/+31
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-201-0/+29
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-201-23/+27
* gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)Ken Jin2022-06-172-13/+40
* gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)Victor Stinner2022-06-163-4/+4
* GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)Ken Jin2022-06-142-49/+43
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-142-8/+0
* 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-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...Dennis Sweeney2022-05-311-9/+10
* GH-93354: Use exponential backoff to avoid excessive specialization attempts....Mark Shannon2022-05-311-3/+44
* bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)Eric Snow2022-05-274-21/+0
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-273-0/+8
* gh-82616: Add Py_IS_TYPE_SIGNED() macro (#93178)Victor Stinner2022-05-271-6/+2