summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Python 3.12.0a1v3.12.0a1Thomas Wouters2022-10-241-2/+2
* gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)Carl Meyer2022-10-212-0/+12
* gh-95023: Added os.setns and os.unshare functions (#95046)Noam Cohen2022-10-202-0/+8
* gh-98417: Store int_max_str_digits on the Interpreter State (GH-98418)Eric Snow2022-10-191-0/+6
* gh-97669: Create Tools/build/ directory (#97963)Victor Stinner2022-10-175-6/+6
* gh-95756: Lazily created cached co_* attrs (GH-97791)Ken Jin2022-10-111-1/+8
* gh-95011: Migrate syslog module to Argument Clinic (GH-95012)Noam Cohen2022-10-082-0/+24
* gh-97922: Run the GC only on eval breaker (#97920)Pablo Galindo Salgado2022-10-082-0/+4
* gh-91052: Add PyDict_Unwatch for unwatching a dictionary (#98055)Carl Meyer2022-10-081-0/+1
* gh-97955: Migrate `zoneinfo` to Argument Clinic (#97958)Nikita Sobolev2022-10-072-0/+8
* Make _symtable_entry.ste_type's comment consistent wit _Py_block_ty (#92414)zikcheng2022-10-071-1/+1
* gh-64373: Convert `_functools` to Argument Clinic (#96640)Nikita Sobolev2022-10-072-0/+8
* GH-91052: Add C API for watching dictionaries (GH-31787)Carl Meyer2022-10-073-1/+51
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-053-15/+24
* gh-96512: Move int_max_str_digits setting to PyConfig (#96944)Gregory P. Smith2022-10-033-4/+1
* gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)Pablo Galindo Salgado2022-09-271-0/+1
* gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)Serhiy Storchaka2022-09-241-2/+2
* gh-96947: Fix comment on `pyruntimestate->pyinterpreters` struct for `next_id...Виталий Дмитриев2022-09-201-2/+2
* GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)adphrost2022-09-151-1/+3
* GH-90997: Improve inline cache performance for MSVC (GH-96781)Brandt Bucher2022-09-151-74/+19
* gh-90110: Fix the c-analyzer Tool (gh-96731)Eric Snow2022-09-121-1/+0
* GH-90699: use statically allocated interned strings in typeobject's slotdefs ...Kumar Aditya2022-09-071-3/+0
* gh-89545: Updates platform module to use new internal _wmi module on Windows ...Steve Dower2022-09-072-0/+8
* GH-96569: Add two NULL checks to avoid undefined behavior. (GH-96585)Mark Shannon2022-09-061-2/+7
* gh-95778: Correctly pre-check for int-to-str conversion (#96537)Mark Dickinson2022-09-041-2/+2
* GH-96458: Statically initialize utf8 representation of static strings (#96481)Kumar Aditya2022-09-033-130/+131
* gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)Gregory P. Smith2022-09-025-0/+47
* gh-93554: Conditional jump opcodes only jump forward (GH-96318)Irit Katriel2022-09-012-51/+35
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-302-0/+22
* gh-46845: clean up unused DK_IXSIZE (GH-96405)Matthias Görgens2022-08-301-9/+0
* Fix Py_INCREF() statistics in limited C API 3.10 (#96120)Victor Stinner2022-08-291-1/+1
* GH-96237: Allow non-functions as reference-holder in frames. (GH-96238)Mark Shannon2022-08-251-2/+2
* GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...Pablo Galindo Salgado2022-08-241-0/+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-192-56/+57
* 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-174-41/+46
* 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-162-5/+11
* 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-113-0/+2313
* gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)Petr Viktorin2022-08-084-9/+23
* gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)Eric Snow2022-08-053-3/+4
* gh-94673: Recover Weaklist Lookup Performance (gh-95544)Eric Snow2022-08-041-0/+33
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)Ken Jin2022-08-041-0/+6
* 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