summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* GH-96678: Fix undefined behavior in ceval.c (GH-96708)Miss Islington (bot)2022-09-101-1/+7
* Fix possible NULL pointer dereference in _PyThread_CurrentFrames (GH-96584)Miss Islington (bot)2022-09-101-1/+6
* [3.11] GH-96636: Remove all uses of NOTRACE_DISPATCH (GH-96643) (#96688)Mark Shannon2022-09-091-59/+57
* [3.11] GH-96569: Avoid undefined behavior (#96616)Mark Shannon2022-09-081-8/+8
* GH-96572: fix use after free in trace refs build mode (GH-96618)Miss Islington (bot)2022-09-061-1/+1
* [3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith2022-09-023-3/+161
* gh-96125: Fix sys.thread_info.name on pthread platforms (GH-96126) (#96128)Miss Islington (bot)2022-08-211-1/+1
* GH-96071: fix deadlock in PyGILState_Ensure (GH-96124) (#96129)Miss Islington (bot)2022-08-191-11/+16
* GH-95818: Skip incomplete frames in `PyThreadState_GetFrame` (GH-95886) (#95890)Miss Islington (bot)2022-08-121-2/+6
* [3.11] gh-95174: Add pthread stubs for WASI (GH-95234) (#95503)Christian Heimes2022-08-013-6/+201
* bpo-45445: Revert "bpo-45445: Fail if an invalid X-option is provided in the ...Miss Islington (bot)2022-07-311-48/+0
* [3.11] gh-95174: Handle missing dup() and constants in WASI (GH-95229) (GH-95...Christian Heimes2022-07-312-1/+11
* GH-90081: Run python tracers at full speed (GH-95328) (#95363)Miss Islington (bot)2022-07-291-4/+7
* [3.11] gh-94938: Fix errror detection of unexpected keyword arguments (GH-949...Serhiy Storchaka2022-07-281-85/+57
* [3.11] gh-95185: Check recursion depth in the AST constructor (GH-95186) (GH-...Miss Islington (bot)2022-07-261-1/+106
* [3.11] GH-94739: Backport GH-94958 to 3.11 (#94965)Mark Shannon2022-07-251-14/+0
* [3.11] GH-94036: Fix more attribute location quirks (GH-95028) (GH-95156)Brandt Bucher2022-07-231-20/+23
* [3.11] GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121) ...Brandt Bucher2022-07-223-3/+14
* [3.11] GH-91409: Don't overwrite valid locations with NOP locations (GH-95067...Brandt Bucher2022-07-201-1/+4
* GH-94851: fix immortal objects refcounting in compiler (gh-95040)Miss Islington (bot)2022-07-201-1/+1
* gh-91256: Ensure help text has the program name even before getpath is called...Miss Islington (bot)2022-07-191-0/+3
* [3.11] GH-94822: Don't specialize when metaclasses are involved (GH-94892) (G...Brandt Bucher2022-07-181-6/+5
* gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)Miss Islington (bot)2022-07-181-3/+1
* gh-91348: Restore frame argument to sys._getframe audit event (GH-94928)Miss Islington (bot)2022-07-171-5/+7
* gh-94864: Fix PyArg_Parse* with deprecated format units "u" and "Z" (GH-94902)Serhiy Storchaka2022-07-171-1/+1
* [3.11] gh-93883: elide traceback indicators when possible (GH-93994) (GH-94740)John Belmonte2022-07-111-4/+14
* [3.11] GH-94694: Fix column offsets for multi-line method lookups (GH-94721)Brandt Bucher2022-07-101-2/+9
* [3.11] GH-93252: Fix error handling for failed Python calls (GH-94693) (GH-94...Kumar Aditya2022-07-091-1/+5
* [3.11] gh-94215: Fix error handling for line-tracing events (GH-94681) (GH-94...Christian Heimes2022-07-081-5/+14
* [3.11] gh-92228: disable the compiler's 'small exit block inlining' optimizat...Christian Heimes2022-07-071-0/+14
* [3.11] gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace...Łukasz Langa2022-07-051-2/+24
* [3.11] gh-94485: Set line number of module's RESUME instruction to 0 as speci...Łukasz Langa2022-07-051-1/+4
* [3.11] GH-94262: Don't create frame objects for frames that aren't yet comple...Miss Islington (bot)2022-07-042-5/+17
* [3.11] GH-93354: Use exponential backoff to avoid excessive specialization at...Mark Shannon2022-06-302-45/+48
* gh-91719: Reload opcode on unknown error so that C can optimize the dispatchi...Miss Islington (bot)2022-06-301-0/+3
* GH-94329: Don't raise on excessive stack consumption (GH-94421) (GH-94446)Miss Islington (bot)2022-06-301-6/+1
* gh-94332: make it safe to call assemble_free when assemble_init has not been ...Irit Katriel2022-06-301-0/+1
* [3.11] GH-93516: Drop broken assert, fixes GH-93769 (GH-94411)Christian Heimes2022-06-291-4/+0
* [3.11] GH-93516: Backport GH-93769 (GH-94231)Mark Shannon2022-06-281-52/+41
* [3.11] GH-93516: Backport GH-93769: Speedup line number checks when tracing (...Mark Shannon2022-06-221-7/+9
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Miss Islington (bot)2022-06-211-1/+2
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...Miss Islington (bot)2022-06-201-1/+22
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938) (#94000)Victor Stinner2022-06-206-6/+4
* gh-74953: Fix PyThread_acquire_lock_timed() code recomputing the timeout (GH-...Miss Islington (bot)2022-06-171-1/+1
* [3.11] GH-93662: Make sure that column offsets are correct in multi-line meth...Irit Katriel2022-06-161-4/+16
* gh-90300: split --help output into separate options (GH-30331)Miss Islington (bot)2022-06-142-65/+123
* [3.11] gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)...Serhiy Storchaka2022-06-141-0/+31
* gh-92597: Improve error message for AST nodes with invalid ranges (GH-93398) ...Miss Islington (bot)2022-06-011-3/+3
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Miss Islington (bot)2022-05-311-12/+12
* gh-93351: Ensure the position information in AST nodes created by the parser ...Miss Islington (bot)2022-05-301-0/+26