summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-89811: Check for valid tp_version_tag in specializer (GH-115045)Peter Lazorchak2024-02-061-0/+28
* [3.11] gh-114388: Fix warnings when assign an unsigned integer member (GH-114...Serhiy Storchaka2024-02-041-28/+57
* [3.11] gh-114685: Fix incorrect use of PyBUF_READ in import.c (GH-114686) (GH...Miss Islington (bot)2024-01-291-1/+1
* [3.11] gh-113358 Fix rendering tracebacks with exceptions with a broken __ge...Jérome Perrin2024-01-211-0/+1
* [3.11] gh-114384: Align sys.set_asyncgen_hooks signature in docs to reflect i...Miss Islington (bot)2024-01-211-1/+1
* [3.11] gh-113358: Fix rendering tracebacks with exceptions with a broken __ge...Jérome Perrin2024-01-191-1/+31
* [3.11] gh-113842: Add missing error check for PyIter_Next() in Python/symtabl...Miss Islington (bot)2024-01-091-0/+6
* [3.11] gh-106905: Use separate structs to track recursion depth in each PyAST...Serhiy Storchaka2023-12-251-282/+356
* [3.11] gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)...Serhiy Storchaka2023-12-141-9/+5
* [3.11] gh-112438: Fix support of format units with the "e" prefix in nested t...Serhiy Storchaka2023-11-271-1/+1
* [3.11] [3.12] gh-109181: Fix refleak in tb_get_lineno() (GH-111948) (#111951)Miss Islington (bot)2023-11-101-1/+4
* [3.11] gh-109181: Speed up Traceback object creation by lazily compute the li...Pablo Galindo Salgado2023-10-311-6/+29
* [3.11] bpo-43950: handle wide unicode characters in tracebacks (GH-28150) (#1...Pablo Galindo Salgado2023-10-271-2/+33
* [3.11] gh-109216: Fix possible memory leak in `BUILD_MAP` (#109323)Nikita Sobolev2023-10-121-2/+3
* [3.11] gh-110237: Check `PyList_Append` for errors in `_PyEval_MatchClass` (G...Miss Islington (bot)2023-10-081-3/+11
* [3.11] gh-109521: Fix obscure cases handling in PyImport_GetImporter() (GH-10...Serhiy Storchaka2023-10-071-2/+13
* [3.11] gh-110052: Fix faulthandler for freed tstate (#110069) (#110072)Victor Stinner2023-09-291-10/+38
* [3.11] Fix error handling in _PySys_UpdateConfig() (GH-109524) (GH-109551)Miss Islington (bot)2023-09-181-2/+9
* [3.11] gh-109351: Fix crash when compiling AST with invalid NamedExpr (GH-109...Miss Islington (bot)2023-09-131-0/+5
* [3.11] gh-109179: Fix traceback display for SyntaxErrors with notes (#109197)...Irit Katriel2023-09-121-13/+11
* [3.11] gh-108987: Fix _thread.start_new_thread() race condition (#109135) (#1...Victor Stinner2023-09-112-22/+29
* [3.11] gh-109207: Fix SystemError when printing symtable entry object. (GH-10...Miss Islington (bot)2023-09-101-3/+2
* [3.11] Check the result of PySet_Contains() for error in Python/symtable.c (G...Serhiy Storchaka2023-09-081-12/+40
* [3.11] gh-106922: Fix error location for constructs with spaces and parenthes...Miss Islington (bot)2023-09-081-0/+17
* [3.11] gh-104690: thread_run() checks for tstate dangling pointer (#109056) (...Victor Stinner2023-09-083-24/+28
* [3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...Serhiy Storchaka2023-08-271-1/+3
* [3.11] gh-107916: Save the error code before decoding the filename in PyErr_S...Miss Islington (bot)2023-08-211-0/+8
* [3.11] gh-107915: Handle errors in C API functions PyErr_Set*() and PyErr_For...Serhiy Storchaka2023-08-191-8/+29
* [3.11] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107982)Steve Dower2023-08-151-8/+21
* [3.11] gh-86493: Fix possible leaks in some modules initialization (GH-106768...Serhiy Storchaka2023-07-191-19/+10
* [3.11] Document PYTHONSAFEPATH along side -P (GH-106122) (#106353)Miss Islington (bot)2023-07-051-2/+2
* [3.11] gh-101006: Improve error handling when read marshal data (GH-101007) (...Miss Islington (bot)2023-06-291-61/+71
* [3.11] gh-105979: Fix exception handling in unmarshal_frozen_code (`Python/im...Kumar Aditya2023-06-261-0/+1
* [3.11] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10...Serhiy Storchaka2023-06-241-7/+5
* [3.11] gh-106030: Miscellaneous fixes in Python/suggestions.c (GH-106… (GH-...Serhiy Storchaka2023-06-231-6/+6
* [3.11] GH-105840: Fix assertion failures when specializing calls with too man...Miss Islington (bot)2023-06-161-2/+2
* [3.11] GH-105588: Add missing error checks to some obj2ast_* converters (GH-1...Miss Islington (bot)2023-06-151-0/+7
* [3.11] gh-105673: Fix uninitialized warning in sysmodule.c (GH-105674) (#105676)Miss Islington (bot)2023-06-121-1/+1
* [3.11] gh-105375: Improve error handling in the sys extension module (#105611...Erlend E. Aasland2023-06-111-6/+18
* [3.11] gh-105375: Improve PyErr_WarnExplicit() error handling (GH-105610) (#1...Miss Islington (bot)2023-06-111-12/+16
* [3.11] gh-105375: Improve error handling in the builtins extension module (GH...Miss Islington (bot)2023-06-111-8/+32
* [3.11] gh-105375: Improve error handling in compiler_enter_scope() (#105494) ...Erlend E. Aasland2023-06-091-1/+5
* [3.11] gh-105164: Detect annotations inside match blocks (GH-105177). (#105314)Jelle Zijlstra2023-06-051-0/+9
* [3.11] gh-105184: document that marshal functions can fail and need to be che...Miss Islington (bot)2023-06-021-0/+4
* [3.11] GH-102818: Do not call PyTraceBack_Here in sys.settrace trampoline (GH...Mark Shannon2023-05-191-4/+0
* [3.11] gh-104615: don't make unsafe swaps in apply_static_swaps (GH-104620). ...Carl Meyer2023-05-191-0/+20
* [3.11] gh-104482: Fix error handling bugs in ast.c (#104514)Irit Katriel2023-05-161-19/+37
* [3.11] GH-104405: Add missing PEP 523 checks (GH-104441)Brandt Bucher2023-05-122-0/+5
* [3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)Lysandros Nikolaou2023-05-071-1/+1
* [3.11] gh-104018: remove unused format "z" handling in string formatfloat() (...Miss Islington (bot)2023-05-071-1/+0