summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-93691: fix too broad source locations of with-statement instruction...Miss Islington (bot)2024-09-021-3/+2
* [3.12] gh-123142: fix too wide source location of GET_ITER/GET_AITER (GH-1234...Irit Katriel2024-08-281-8/+7
* [3.12] gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH… (#12...Donghee Na2024-08-222-203/+205
* [3.12] gh-123142: Fix too wide source locations in tracebacks of exceptions f...Irit Katriel2024-08-221-2/+3
* [3.12] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-081-1/+1
* [3.12] gh-122334: Fix crash when importing ssl after re-initialization (GH-12...neonene2024-08-021-0/+12
* [3.12] gh-122029: Log call events in sys.setprofile when it's a method with c...Miss Islington (bot)2024-07-231-0/+13
* [3.12] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-2/+2
* [3.12] gh-121153: Fix some errors with use of _PyLong_CompactValue() (GH-121154)Serhiy Storchaka2024-07-171-2/+2
* [3.12] gh-121657: Display correct error message for yield from outsid… (GH-...Kirill Podoprigora2024-07-151-1/+1
* [3.12] gh-121390: tracemalloc: Fix tracebacks memory leak (GH-121391) (#121393)Miss Islington (bot)2024-07-051-1/+1
* [3.12] gh-120811: Fix reference leak upon `_PyContext_Exit` failure (GH-12081...Miss Islington (bot)2024-06-221-0/+1
* [3.12] gh-120722: Set position on RETURN_VALUE in lambda (GH-120724) (#120739)Jelle Zijlstra2024-06-191-1/+1
* [3.12] gh-119897: Revert buggy optimization which was removed in 3.13 (#120467)Irit Katriel2024-06-181-13/+5
* [3.12] gh-93691: fix too broad source locations of for statement iterators (G...Irit Katriel2024-06-131-0/+7
* [3.12] gh-120343: Fix column offsets of multiline tokens in tokenize (GH-1203...Miss Islington (bot)2024-06-121-4/+10
* [3.12] gh-120343: Do not reset byte_col_offset_diff after multiline tokens (G...Miss Islington (bot)2024-06-111-1/+6
* [3.12] gh-119666: fix multiple class-scope comprehensions referencing __class...Miss Islington (bot)2024-06-101-13/+10
* [3.12] gh-120155: Fix optimize_and_assemble_code_unit() error handling (#120231)Victor Stinner2024-06-071-1/+1
* [3.12] gh-119311: Fix name mangling with PEP 695 generic classes (#119464) (#...Jelle Zijlstra2024-06-042-13/+48
* [3.12] gh-111499: Fix PYTHONMALLOCSTATS at Python exit (#120021) (#120023)Victor Stinner2024-06-041-5/+7
* [3.12] gh-119821: Fix refleak in LOAD_FROM_DICT_OR_GLOBALS (#119975)Jelle Zijlstra2024-06-032-291/+295
* [3.12] gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119...Jelle Zijlstra2024-06-012-329/+341
* [3.12] gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadSta...Sam Gross2024-05-311-0/+6
* [3.12] gh-119704: Fix reference leak in the ``Python/Python-tokenize.c`` (GH-...Miss Islington (bot)2024-05-291-0/+1
* [3.12] gh-119118: Fix performance regression in tokenize module (GH-119615) (...Miss Islington (bot)2024-05-281-4/+40
* [3.12] gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpre...Eric Snow2024-05-221-0/+17
* [3.12] gh-118513: Fix sibling comprehensions with a name bound in one and glo...Miss Islington (bot)2024-05-031-39/+42
* [3.12] gh-118272: Clear generator frame's locals when the generator is closed...Irit Katriel2024-05-021-5/+13
* [3.12] gh-116767: fix crash on 'async with' with many context managers (GH-11...Irit Katriel2024-05-011-2/+16
* [3.12] gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH...Miss Islington (bot)2024-04-151-1/+1
* [3.12] gh-90300: Remove reference to PYTHON_FROZEN_MODULES in Python CLI help...Serhiy Storchaka2024-03-191-2/+1
* [3.12] gh-90300: Improve the Python CLI help output (GH-115853) (GH-117022)Serhiy Storchaka2024-03-191-67/+38
* [3.12] gh-116735: Use `MISSING` for `CALL` event if argument is absen… (#11...Tian Gao2024-03-192-2/+2
* [3.12] gh-112536: Add TSAN build on Github Actions (GH-116872)Antoine Pitrou2024-03-181-0/+4
* [3.12] gh-116626: Emit `CALL` events for all `INSTRUMENTED_CALL_FUNCTION_EX (...Tian Gao2024-03-142-28/+28
* [3.12] gh-90300: Fix undocumented envvars in the Python CLI help (GH-116765) ...Serhiy Storchaka2024-03-141-0/+3
* [3.12] gh-90300: Document equivalent -X options for envvars in the Python CLI...Serhiy Storchaka2024-03-141-18/+19
* [3.12] gh-90300: Sort the -X options and some envvars in the Python CLI help ...Serhiy Storchaka2024-03-131-27/+28
* [3.12] gh-90300: Fix cmdline.rst (GH-116721) (GH-116724)Miss Islington (bot)2024-03-131-2/+2
* [3.12] gh-116447: Fix possible UB in `arraymodule` and `getargs` (GH-116459) ...Miss Islington (bot)2024-03-081-2/+2
* [3.12] gh-116326: Handler errors correctly in `getwindowsversion` in `sysmodu...Miss Islington (bot)2024-03-051-18/+32
* [3.12] gh-115320: Refactor `get_hash_info` in `sysmodule.c` not to swallow er...Miss Islington (bot)2024-03-041-23/+25
* [3.12] gh-116034: fix location info on the error of a failed assertion (#116054)Irit Katriel2024-02-291-1/+1
* [3.12] gh-90300: Reformat the Python CLI help output (GH-93415) (#115847)Łukasz Langa2024-02-231-95/+95
* [3.12] gh-96497: Mangle name before symtable lookup in 'symtable_extend_named...Miss Islington (bot)2024-02-171-4/+10
* [3.12] GH-112215: Backport C recursion changes (GH-115083)Mark Shannon2024-02-134-20/+8
* [3.12] gh-115011: Improve support of __index__() in setters of members with u...Serhiy Storchaka2024-02-111-37/+45
* [3.12] gh-114828: Fix __class__ in class-scope inlined comprehensions (GH-115...Miss Islington (bot)2024-02-071-0/+19
* [3.12] gh-114388: Fix warnings when assign an unsigned integer member (GH-114...Serhiy Storchaka2024-02-041-28/+57