summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)Miss Islington (bot)2021-10-121-1/+1
* Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)Miss Islington (bot)2021-10-111-0/+3
* Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...Miss Islington (bot)2021-10-111-1/+1
* [3.10] Fix typos in the Python directory (GH-28767) (GH-28799)Christian Clauss2021-10-076-8/+8
* bpo-44050: Extension modules can share state when they don't support sub-inte...Miss Islington (bot)2021-10-051-1/+3
* [3.10] bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720). (GH-28721)Serhiy Storchaka2021-10-041-1/+1
* [3.10] bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size ...Serhiy Storchaka2021-10-042-5/+5
* [3.10] Remove trailing spaces (GH-28709)Serhiy Storchaka2021-10-031-2/+2
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28671)Victor Stinner2021-10-011-12/+41
* Move predispatch logic from DISPATCH macro to juts before switch. Reduces siz...Mark Shannon2021-09-291-7/+15
* [3.10] bpo-45307: Restore private C API function _PyImport_FindExtensionObjec...Serhiy Storchaka2021-09-281-0/+17
* [3.10] bpo-45183: don't raise an exception when calling zipimport.zipimporter...Brett Cannon2021-09-171-1/+1
* [3.10] bpo-34602: Quadruple stack size on macOS when compiling with UBSAN (GH...Łukasz Langa2021-09-151-7/+6
* bpo-44219: Release the GIL during isatty syscalls (GH-28250) (GH-28255)Miss Islington (bot)2021-09-091-2/+14
* [3.10] bpo-45083: Include the exception class qualname when formatting an exc...Miss Islington (bot)2021-09-082-36/+38
* [3.10] bpo-45056: Remove trailing unused constants from co_consts (GH-28109) ...Łukasz Langa2021-09-084-4611/+4641
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-2...Miss Islington (bot)2021-09-071-1/+1
* bpo-45039: Consistently use ADDOP_LOAD_CONST in compiler rather than ADDOP_O(...Miss Islington (bot)2021-08-311-2/+4
* bpo-45061: Enhance faulthandler traceback wit no Python frame (GH-28090)Miss Islington (bot)2021-08-311-1/+1
* bpo-44449: faulthandler don't modify frame refcnt (GH-27850)Victor Stinner2021-08-301-5/+5
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) (GH-27957)Dong-hee Na2021-08-261-0/+4
* bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...Miss Islington (bot)2021-08-101-1/+15
* Remove unused variable. (GH-27677) (#27680)Mark Shannon2021-08-091-3/+0
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-094-3803/+3814
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Miss Islington (bot)2021-08-071-22/+13
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Miss Islington (bot)2021-08-061-3/+4
* bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)Miss Islington (bot)2021-08-062-0/+24
* bpo-39091: Fix segfault when Exception constructor returns non-exception for ...Miss Islington (bot)2021-08-031-4/+16
* bpo-32280: Store _PyRuntime in a named section (GH-4802) (#27448)Miss Islington (bot)2021-07-291-2/+28
* [3.10] bpo-43897: Reject "_" captures and top-level MatchStar in the AST vali...Miss Islington (bot)2021-07-281-20/+28
* bpo-44740: Lowercase "internet" and "web" where appropriate. (GH-27378) (GH-2...Miss Islington (bot)2021-07-271-1/+1
* [3.10] bpo-44600: Fix line numbers for pattern matching cleanup code (GH-2734...Miss Islington (bot)2021-07-251-4/+12
* bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216) ...Miss Islington (bot)2021-07-191-1/+6
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Miss Islington (bot)2021-07-171-4/+9
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Miss Islington (bot)2021-07-161-0/+3
* Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...Miss Islington (bot)2021-07-161-6/+1
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-163-3819/+3856
* [3.10] bpo-44645: Check for interrupts on any potentially backwards edge. (GH...Mark Shannon2021-07-161-1/+6
* bpo-44622: Set line number of END_ASYNC_FOR to match that of iterator. (GH-27...Mark Shannon2021-07-151-1/+3
* [3.10] bpo-44589: raise a SyntaxError when mapping patterns have duplicate li...Miss Islington (bot)2021-07-141-4/+41
* bpo-44616: Mark all clean up instructions at end of named exception block as ...Mark Shannon2021-07-141-3/+2
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822) (GH...Miss Islington (bot)2021-07-131-0/+3
* [3.10] bpo-43897: ast validation for pattern matching nodes (GH-27074)Batuhan Taskaya2021-07-101-31/+123
* bpo-44570: Fix line tracing for forward jumps to duplicated tails (GH-27067)Mark Shannon2021-07-081-19/+13
* bpo-41180: Replace marshal code.__new__ audit event with marshal.load[s] and ...Steve Dower2021-06-301-10/+20
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874) (GH-26877)Victor Stinner2021-06-231-0/+3
* bpo-44466: Faulthandler now detects the GC (GH-26823) (GH-26826)Victor Stinner2021-06-211-0/+4
* bpo-44297: Fix missing line number in generator expressions (GH-26821)Mark Shannon2021-06-212-958/+959
* bpo-41299: Reduce lag in Windows threading timeouts by using a higher precisi...Miss Islington (bot)2021-06-201-4/+10
* bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Miss Islington (bot)2021-06-031-0/+808