summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-124871: fix 'visited' tracking in compiler's reachability analysis ...Miss Islington (bot)2024-10-041-2/+3
* [3.13] gh-124442: make `__static_attributes__` deterministic by sorting (GH-1...Jelle Zijlstra2024-10-011-1/+12
* [3.13] GH-124567: Revert the Incremental GC in 3.13 (#124770)T. Wouters2024-09-302-575/+335
* [3.13] gh-123892: Add "_wmi" to sys.stdlib_module_names (GH-123893) (#123896)Miss Islington (bot)2024-09-301-0/+1
* [3.13] gh-124746: remove assertion on exits having line numbers (#124762)Irit Katriel2024-09-301-16/+0
* [3.13] gh-116510: Fix crash during sub-interpreter shutdown (gh-124645) (#124...Miss Islington (bot)2024-09-271-3/+26
* [3.13] gh-124160: Pass main_tstate to update_global_state_for_extension() (GH...Miss Islington (bot)2024-09-231-1/+1
* [3.13] gh-123880: Allow recursive import of single-phase-init modules (GH-123...Miss Islington (bot)2024-09-231-5/+13
* [3.13] GH-123545: Remove duplicate Py_DECREF when handling _PyOptimizer_Optim...Savannah Ostrowski2024-09-062-4/+0
* [3.13] gh-123275: Support `-Xgil=1` and `PYTHON_GIL=1` on non-free-threaded b...Miss Islington (bot)2024-09-061-4/+8
* [3.13] gh-121804: always show error location for SyntaxError's in basic repl ...Miss Islington (bot)2024-09-031-0/+31
* [3.13] gh-123091: Use more _Py_IsImmortalLoose() (GH-123602) (GH-123622)Petr Viktorin2024-09-031-1/+1
* [3.13] gh-98442: fix locations of with statement's cleanup instructions (GH-1...Miss Islington (bot)2024-09-021-1/+3
* [3.13] gh-93691: fix too broad source locations of with-statement instruction...Miss Islington (bot)2024-09-021-3/+2
* [3.13] gh-123091: Use _Py_IsImmortalLoose() (#123511) (#123600)Victor Stinner2024-09-023-6/+6
* [3.13] GH-117759: Document incremental GC (GH-123266) (#123395)Miss Islington (bot)2024-09-021-11/+16
* [3.13] GH-122298: Restore printing of GC stats (GH-123261) (#123268)Miss Islington (bot)2024-09-021-0/+25
* [3.13] Fix typos in docs, error messages and comments (#122502) (#122606)Alex Waygood2024-09-021-1/+1
* [3.13] gh-123142: fix too wide source location of GET_ITER/GET_AITER (GH-1234...Irit Katriel2024-08-281-8/+7
* [3.13] gh-123344: Add missing ast optimizations for PEP 696 (GH-123377) (#123...Miss Islington (bot)2024-08-281-0/+3
* [3.13] gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH… (#12...Donghee Na2024-08-222-8/+10
* [3.13] gh-123142: Fix too wide source locations in tracebacks of exceptions f...Irit Katriel2024-08-221-2/+3
* [3.13] gh-122712: Guard against __code__ reassignment in CALL_ALLOC_AND_ENTER...mpage2024-08-212-0/+4
* [3.13] gh-123048: Fix missing source location in pattern matching code (GH-12...Miss Islington (bot)2024-08-201-1/+1
* [3.13] Add debug offsets for free threaded builds (GH-123041) (#123055)Miss Islington (bot)2024-08-182-2/+4
* [3.13] gh-122247: Move instruction instrumentation sanity check after tracing...Miss Islington (bot)2024-08-161-1/+1
* [3.13] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-081-1/+1
* [3.13] gh-122728: Fix SystemError in PyEval_GetLocals() (GH-122735) (#122757)Miss Islington (bot)2024-08-061-1/+1
* [3.13] gh-122445: populate only modified fields in __static_attributes__ (#12...Irit Katriel2024-08-021-15/+15
* [3.13] gh-122334: Fix crash when importing ssl after re-initialization (GH-12...Miss Islington (bot)2024-08-021-0/+13
* [3.13] gh-117657: Avoid race in `PAUSE_ADAPTIVE_COUNTER` in free-threaded bui...Miss Islington (bot)2024-07-301-1/+2
* [3.13] GH-116090: Fire RAISE events from _FOR_ITER_TIER_TWO (GH-122419)Brandt Bucher2024-07-294-12/+11
* [3.13] gh-122201: Lock mutex when setting handling_thread to NULL (GH-122204)...Miss Islington (bot)2024-07-261-3/+15
* [3.13] gh-122029: Log call events in sys.setprofile when it's a method with c...Miss Islington (bot)2024-07-231-0/+13
* [3.13] gh-121390: tracemalloc: Fix tracebacks memory leak (GH-121391) (#121392)Miss Islington (bot)2024-07-211-1/+1
* [3.13] gh-120973: Fix thread-safety issues with `threading.local` (GH-121655)...Miss Islington (bot)2024-07-191-0/+3
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-2/+2
* [3.13] gh-118934: Make PyEval_GetLocals return borrowed reference (GH-119769)...Miss Islington (bot)2024-07-181-1/+32
* [3.13] gh-121621: Move asyncio_running_loop to private struct (GH-121939) (#1...Miss Islington (bot)2024-07-181-2/+2
* [3.13] gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-1211...Serhiy Storchaka2024-07-171-2/+2
* [3.13] GH-121583: Remove dependency from pystats.h to internal header file (G...Miss Islington (bot)2024-07-161-0/+4
* [3.13] gh-121621: Move asyncio running loop to thread state (GH-121695) (GH-1...Miss Islington (bot)2024-07-161-0/+4
* [3.13] gh-121814: Only check f_trace_opcodes if Python frame exists (GH-12181...Miss Islington (bot)2024-07-161-1/+1
* [3.13] gh-120317: Lock around global state in the tokenize module (GH-120318)...Miss Islington (bot)2024-07-161-43/+72
* [3.13] gh-121794: Don't set `ob_tid` to zero in fast-path dealloc (GH-121799)...Miss Islington (bot)2024-07-151-11/+54
* [3.13] gh-121546: Disable contextvar caching on free-threading build (GH-1217...Miss Islington (bot)2024-07-151-0/+14
* [3.13] gh-121657: Display correct error message for yield from outsid… (GH-...Kirill Podoprigora2024-07-151-1/+1
* [3.13] gh-118297: Make Sure All Pending Calls Run in _Py_FinishPendingCalls()...Miss Islington (bot)2024-07-151-6/+28
* [3.13] gh-121698 Emscripten: Use updated WebAssembly type reflection proposal...Miss Islington (bot)2024-07-141-2/+12
* [3.13] gh-121332: Make AST node constructor check _attributes instead of hard...Jelle Zijlstra2024-07-111-14/+25