summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-54434: Make difflib.rst doctests pass. (#111677)Terry Jan Reedy2023-11-031-3/+5
* gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (#111655)AN Long2023-11-035-6/+12
* gh-76785: Minor Fixes in crossinterp.c (gh-111671)Eric Snow2023-11-031-126/+267
* Fix typo in documentation of `SysLogHandler.createSocket` (#111665)LoipesMas2023-11-021-3/+1
* gh-111663: Restore the Tier 2 uop count pystats (#111664)Michael Droettboom2023-11-021-0/+2
* gh-110892: Return NULL for `PyTrace_RETURN` events caused by an exception (GH...Tian Gao2023-11-023-23/+49
* GH-109369 Add vectorcall to `PyLong_Type` (GH-111642)Mark Shannon2023-11-021-0/+25
* gh-111482: Use Argument Clinic for clock_gettime() (#111641)Victor Stinner2023-11-023-32/+142
* gh-111625: Fix link to Info-ZIP homepage (#111626)partev2023-11-022-4/+4
* build(deps): bump hypothesis from 6.87.1 to 6.88.1 in /Tools (#111596)dependabot[bot]2023-11-021-1/+1
* build(deps): bump actions/setup-node from 3 to 4 (#111594)dependabot[bot]2023-11-021-2/+2
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-0218-339/+362
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-0218-114/+83
* Remove unnecessary includes (GH-111633)Serhiy Storchaka2023-11-022-2/+0
* GH-110894: Call loop exception handler for exceptions in client_connected_cb ...Kumar Aditya2023-11-023-0/+41
* gh-111544: Fix mimalloc build on AIX (#111593)Ayappan Perumal2023-11-021-2/+2
* GH-111435: Add Support for Sharing True and False Between Interpreters (gh-11...Anthony Shaw2023-11-024-4/+33
* gh-76785: Crossinterp utils additions (gh-111530)Eric Snow2023-11-0111-471/+1308
* gh-111089: Use PyUnicode_AsUTF8() in getargs.c (#111620)Victor Stinner2023-11-011-6/+2
* High level docs for the VM state (#111621)Guido van Rossum2023-11-011-0/+90
* GH-111485: Silence warnings in Python/executor_cases.c.h (#111619)Guido van Rossum2023-11-013-0/+6
* gh-106718: Treat PyConfig.stdlib_dir as highest-priority setting for stdlib_d...Yilei Yang2023-11-013-10/+30
* gh-106168: Update PyList_SET_ITEM() What's New doc (#111618)Victor Stinner2023-11-011-1/+2
* gh-111374: Add a new PYTHON_FROZEN_MODULES env var, equivalent of `-X frozen_...Yilei Yang2023-11-015-6/+56
* gh-111520: Integrate the Tier 2 interpreter in the Tier 1 interpreter (#111428)Guido van Rossum2023-11-0119-487/+509
* Simplify trivial calls of PyUnicode_FromFormat() (GH-111605)Serhiy Storchaka2023-11-012-2/+2
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-0134-907/+180
* gh-111495: Add tests for PyBytes and PyByteArray C API (GH-111496)Serhiy Storchaka2023-11-015-1/+725
* Simplify _PyPegen_join_names_with_dot() (GH-111602)Serhiy Storchaka2023-11-011-32/+2
* GH-111537: Avoid using `this_instr` in asserts. (GH-111600)Mark Shannon2023-11-012-36/+24
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-019-577/+858
* gh-111576: Improve documention for tkinter.messagebox (GH-111578)Serhiy Storchaka2023-11-011-10/+165
* gh-111495: add stub files for C API test modules (GH-111586)Sergey B Kirpichev2023-11-0113-3/+204
* gh-110367: Make regrtest --verbose3 compatible with --huntrleaks -jN (#111577)Victor Stinner2023-11-013-2/+34
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)Victor Stinner2023-11-0112-23/+23
* gh-111282: Fix NamedTemporaryFile example code (GH-111283)Krzysiek Karbowiak2023-10-311-7/+7
* gh-110774: allow setting the Runner(loop_factory=...) from IsolatedAsyncioTes...Thomas Grainger2023-10-314-2/+28
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-317-8/+142
* gh-111420: Allow type comments in parenthesized `with` statements (#111468)Tomas R2023-10-315-8/+32
* gh-108765: Python.h no longer includes <stddef.h> on Windows (#111563)Victor Stinner2023-10-313-3/+11
* gh-90815: Exclude mimalloc .c files from Windows build (#111532)Dino Viehland2023-10-316-121/+13
* gh-102249: Expand sys.call_tracing documentation (#102806)Quentin Peter2023-10-311-3/+17
* gh-93607: document `root` attribute of `iterparse` (#99410)Prometheus33752023-10-311-1/+3
* gh-106861: Docs: Add availability directives to all Unix-only modules (#108975)xzmeng2023-10-319-6/+14
* gh-111062: CI: Rename reusable-build-[X].yml to reusable-[X].yml (#111552)Hugo van Kemenade2023-10-314-6/+6
* gh-109181: Speed up Traceback object creation by lazily compute the line numb...Pablo Galindo Salgado2023-10-312-6/+31
* GH-111438: Add Support for Sharing Floats Between Interpreters (gh-111439)Anthony Shaw2023-10-314-2/+34
* GH-111485: Remove some special cases from the code generator and bytecodes.c ...Mark Shannon2023-10-318-55/+119
* GH-111485: Increment `next_instr` consistently at the start of the instructio...Mark Shannon2023-10-3111-521/+1079
* gh-111531: Tkinter: fix reference leaks in bind_class() and bind_all() (GH-11...Serhiy Storchaka2023-10-312-2/+4