summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-81137: deprecate assignment of code object to a function of a mismatched t...Irit Katriel2023-11-071-0/+22
* gh-111623: Add Support for Cross-interpreter tuples (gh-111628)Anthony Shaw2023-11-072-0/+30
* gh-85098: Implement functional CLI of symtable (#109112)Serhiy Storchaka2023-11-072-8/+103
* gh-106672: C API: Report indiscriminately ignored errors (GH-106674)Serhiy Storchaka2023-11-073-20/+109
* gh-111765: Move old PyFloat_* tests to Lib/test/test_capi/test_float.py (GH-...Sergey B Kirpichev2023-11-072-65/+65
* GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111...Mark Shannon2023-11-071-0/+43
* gh-79932: raise exception if frame.clear() is called on a suspended frame (#1...Irit Katriel2023-11-071-6/+9
* gh-110395: test: assert after the child dies. (#111816)Gregory P. Smith2023-11-071-1/+1
* gh-96954: Use skip_if_missing in test_makeunicodedata (GH-111764)Dennis Sweeney2023-11-061-1/+2
* gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out o...Masayuki Moriyama2023-11-061-0/+46
* gh-109466: Add ipv6_mapped property to IPv4Address (#109467)Charles Machalow2023-11-052-0/+18
* gh-111495: Add tests for PyComplex C API (GH-111591)Sergey B Kirpichev2023-11-051-0/+146
* gh-111495: Add tests for PyFloat C API (GH-111624)Sergey B Kirpichev2023-11-051-0/+117
* gh-111719: Add extra check for alias command (#111720)Tian Gao2023-11-042-6/+49
* gh-110395: invalidate open kqueues after fork (#110517)Davide Rizzo2023-11-041-0/+18
* gh-80675: Set `f_trace_lines = True` on all frames upon `pdb.set_trace()` (#1...Tian Gao2023-11-042-0/+31
* gh-96954: use a directed acyclic word graph for storing the unicodedata codep...CF Bolz-Tereick2023-11-042-0/+141
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-047-21/+229
* gh-108303: Move `zip` and `tar` archives to `Lib/test/archivetestdata` (#111549)Nikita Sobolev2023-11-0413-21/+22
* gh-111159: Fix `SyntaxError` doctests for non-builtin exception classes (#111...Nikita Sobolev2023-11-042-1/+23
* gh-111495: Test C API functions with extreme sizes and indices (GH-111631)Serhiy Storchaka2023-11-044-40/+134
* gh-111644: Fix asyncio test_unhandled_exceptions() (#111713)Victor Stinner2023-11-041-2/+3
* gh-111644: Fix support threading_cleanup() (#111714)Victor Stinner2023-11-041-25/+28
* gh-109649: Fix test_os.test_process_cpu_count_affinity() (#111689)Victor Stinner2023-11-031-4/+4
* gh-111506: Implement Py_SET_REFCNT() as opaque function in limited C API (#11...Victor Stinner2023-11-031-0/+1
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-031-0/+37
* gh-111681: minor fixes to typing doctests; remove unused imports in `test_typ...Nikita Sobolev2023-11-031-3/+2
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-033-213/+214
* gh-111490: Make the exception type check in test_pyexpat more specific (GH-11...Nikita Sobolev2023-11-031-1/+1
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-036-55/+71
* gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (#111655)AN Long2023-11-031-0/+7
* gh-110892: Return NULL for `PyTrace_RETURN` events caused by an exception (GH...Tian Gao2023-11-021-12/+17
* gh-111625: Fix link to Info-ZIP homepage (#111626)partev2023-11-021-2/+2
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-023-214/+215
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-022-8/+17
* GH-110894: Call loop exception handler for exceptions in client_connected_cb ...Kumar Aditya2023-11-022-0/+40
* GH-111435: Add Support for Sharing True and False Between Interpreters (gh-11...Anthony Shaw2023-11-022-4/+7
* gh-76785: Crossinterp utils additions (gh-111530)Eric Snow2023-11-011-1/+1
* gh-106718: Treat PyConfig.stdlib_dir as highest-priority setting for stdlib_d...Yilei Yang2023-11-011-0/+14
* gh-111374: Add a new PYTHON_FROZEN_MODULES env var, equivalent of `-X frozen_...Yilei Yang2023-11-011-0/+11
* gh-111520: Integrate the Tier 2 interpreter in the Tier 1 interpreter (#111428)Guido van Rossum2023-11-012-5/+14
* gh-111495: Add tests for PyBytes and PyByteArray C API (GH-111496)Serhiy Storchaka2023-11-013-1/+381
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-011-1/+1
* gh-110367: Make regrtest --verbose3 compatible with --huntrleaks -jN (#111577)Victor Stinner2023-11-012-2/+31
* gh-110774: allow setting the Runner(loop_factory=...) from IsolatedAsyncioTes...Thomas Grainger2023-10-312-2/+19
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-0/+57
* gh-111420: Allow type comments in parenthesized `with` statements (#111468)Tomas R2023-10-312-0/+20
* GH-111438: Add Support for Sharing Floats Between Interpreters (gh-111439)Anthony Shaw2023-10-312-2/+5
* GH-111485: Increment `next_instr` consistently at the start of the instructio...Mark Shannon2023-10-312-17/+91
* gh-111531: Tkinter: fix reference leaks in bind_class() and bind_all() (GH-11...Serhiy Storchaka2023-10-311-2/+2