summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-119344: Make critical section API public (#119353)Sam Gross2024-06-211-29/+77
* gh-120811: Fix reference leak upon `_PyContext_Exit` failure (#120812)Peter2024-06-211-0/+1
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-219-34/+96
* gh-119182: Use public PyUnicodeWriter in contextvar_tp_repr() (#120809)Victor Stinner2024-06-201-32/+15
* gh-117511: Make PyMutex public in the non-limited API (#117731)Sam Gross2024-06-202-26/+28
* gh-98442: fix locations of with statement's cleanup instructions (#120763)Irit Katriel2024-06-201-1/+3
* Fix typos in comments (#120481)Xie Yanbo2024-06-202-3/+3
* gh-120437: Fix `_CHECK_STACK_SPACE` optimization problems introduced in gh-11...Nadeshiko Manju2024-06-192-2/+0
* gh-120733: rename internal compiler functions according to naming convention ...Irit Katriel2024-06-191-30/+23
* gh-120722: Set position on RETURN_VALUE in lambda (#120724)Jelle Zijlstra2024-06-191-1/+1
* gh-120726: Fix compiler warnings on is_core_module() (#120727)Kirill Podoprigora2024-06-192-4/+5
* gh-120367: fix bug where compiler detects redundant jump after pseudo op repl...Irit Katriel2024-06-181-1/+1
* gh-119574: Add some missing environment variables to '--help-env'. (GH-120006)devdanzin2024-06-181-0/+17
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-188-179/+141
* gh-117657: Fix `__slots__` thread safety in free-threaded build (#119368)Daniele Parmeggiani2024-06-171-9/+33
* gh-117657: Fix TSan reported data race on ioctl_works (#120175)Sam Gross2024-06-171-3/+5
* gh-115649: Copy the filename into main interpreter before intern in import.c ...AN Long2024-06-171-1/+11
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-171-26/+54
* GH-120619: Clean up `RETURN_VALUE` instruction (GH-120624)Mark Shannon2024-06-177-20/+26
* gh-120367: fix removal of redundant NOPs and jumps after reordering hot-cold ...Irit Katriel2024-06-171-12/+18
* gh-83754: Use the Py_TYPE() macro (#120599)Victor Stinner2024-06-172-4/+4
* gh-120568: fix file leak in PyUnstable_CopyPerfMapFile (#120569)Carson Radtke2024-06-161-4/+4
* gh-120526: Correct signature of map() builtin (GH-120528)Adam Williamson2024-06-151-1/+1
* gh-120161: Fix a Crash in the _datetime Module (gh-120182)Eric Snow2024-06-141-0/+1
* gh-117657: Fix some simple races in instrumentation.c (GH-120118)Ken Jin2024-06-131-2/+2
* gh-120343: Fix column offsets of multiline tokens in tokenize (#120391)Lysandros Nikolaou2024-06-121-4/+10
* gh-120400 :Support Linux perf profile to see Python calls on RISC-V archite...ixgbe002024-06-121-0/+8
* gh-120029: remove unused macros in ``symtable.c`` (#120222)Bénédikt Tran2024-06-121-1/+0
* gh-93691: fix too broad source locations of for statement iterators (#120330)Irit Katriel2024-06-121-0/+7
* gh-120385: Fix reference leak in symtable (#120386)Kirill Podoprigora2024-06-121-1/+3
* gh-120343: Do not reset byte_col_offset_diff after multiline tokens (#120352)Lysandros Nikolaou2024-06-111-1/+6
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-115-202/+368
* gh-119666: fix multiple class-scope comprehensions referencing __class__ (#12...Carl Meyer2024-06-101-13/+10
* gh-119258: Eliminate Type Guards in Tier 2 Optimizer with Watcher (GH-119365)Saul Shanabrook2024-06-084-25/+107
* gh-120225: fix crash in compiler on empty block at end of exception handler (...Irit Katriel2024-06-071-6/+2
* gh-93691: fix too broad source locations of with-statement instructions (#120...Irit Katriel2024-06-071-3/+2
* gh-117657: Fix TSAN race involving import lock (#118523)Sam Gross2024-06-062-76/+49
* gh-119786: move adaptive interpreter doc from Python to InternalsDoc (#120137)Irit Katriel2024-06-061-141/+0
* gh-117657: Fix race involving GC and heap initialization (#119923)Sam Gross2024-06-042-0/+6
* Fix typos in documentation and comments (#119763)Xie Yanbo2024-06-047-9/+9
* gh-111499: Fix PYTHONMALLOCSTATS at Python exit (#120021)Victor Stinner2024-06-041-6/+6
* gh-117398: Use Per-Interpreter State for the _datetime Static Types (gh-119929)Eric Snow2024-06-031-2/+2
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-033-13/+11
* gh-117657: Avoid `sem_clockwait` in TSAN (#119915)Sam Gross2024-06-031-1/+1
* gh-119981: Use do while(0) in some symtable.c multi-line macros (#119982)Bénédikt Tran2024-06-031-45/+52
* gh-117657: Fix TSAN race in QSBR assertion (#119887)Sam Gross2024-06-011-1/+2
* gh-117657: Fix TSAN race in free-threaded GC (#119883)Sam Gross2024-06-011-3/+2
* gh-74929: PEP 667 C API documentation (gh-119379)Alyssa Coghlan2024-06-014-4/+3
* gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119822)Jelle Zijlstra2024-05-314-53/+54
* gh-119369: Fix deadlock during thread exit in free-threaded build (#119528)Sam Gross2024-05-312-9/+17