summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-46831: Update __build_class__ comment (GH-31522)Miss Islington (bot)2022-03-031-3/+2
* [3.9] bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_cach...Petr Viktorin2022-02-021-932/+939
* Update copyright year to 2022. (GH-30335)Miss Islington (bot)2022-01-021-1/+1
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-291-1/+1
* [3.9] bpo-45806: Fix recovery from stack overflow for 3.9. Again. (GH-29640)Mark Shannon2021-11-193-13/+16
* [3.9] bpo-42540: reallocation of id_mutex should not force default allocator ...Sam Gross2021-11-171-1/+4
* bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) ...Miss Islington (bot)2021-11-171-0/+22
* bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...Miss Islington (bot)2021-10-221-1/+1
* [3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esca...Serhiy Storchaka2021-10-141-1/+1
* 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.9] Fix typos in the Python directory (GH-28767) (GH-28798)Christian Clauss2021-10-074-4/+4
* [3.9] bpo-44050: Extension modules can share state when they don't support su...Łukasz Langa2021-10-051-1/+3
* [3.9] Remove trailing spaces (GH-28710)Serhiy Storchaka2021-10-032-4/+4
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28671) (GH-...Miss Islington (bot)2021-10-011-12/+41
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Miss Islington (bot)2021-09-091-2/+14
* [3.9] bpo-45083: Include the exception class qualname when formatting an exce...Miss Islington (bot)2021-09-032-36/+38
* bpo-44449: faulthandler don't modify frame refcnt (GH-27850)Miss Islington (bot)2021-08-301-5/+5
* bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...Miss Islington (bot)2021-08-101-1/+15
* 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-39091: Fix segfault when Exception constructor returns non-exception for ...Miss Islington (bot)2021-08-031-4/+16
* Set line number of END_ASYNC_FOR so that it doesn't show in traces. (GH-27255)Mark Shannon2021-07-201-0/+6
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822) (#2...Miss Islington (bot)2021-07-121-0/+3
* 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-26878)Victor Stinner2021-06-231-0/+3
* bpo-41299: Reduce lag in Windows threading timeouts by using a higher precisi...Miss Islington (bot)2021-06-111-4/+10
* [3.9] bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) (GH-26...Batuhan Taskaya2021-06-031-0/+700
* [3.9] bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (G...Jakub Kulík2021-05-211-0/+106
* bpo-28146: Fix a confusing error message in str.format() (GH-24213)Miss Islington (bot)2021-05-131-2/+8
* bpo-44070: No longer eagerly makes import filenames absolute, except for exte...Steve Dower2021-05-101-1829/+1830
* bpo-42800: Add audit events for f_code and tb_frame (GH-24182)Steve Dower2021-05-031-1/+1
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-071-2687/+2777
* [3.9] bpo-43710: Rollback the 3.9 bpo-42500 fix, it broke the ABI in 3.9.3 (#...Gregory P. Smith2021-04-044-16/+16
* bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...Miss Islington (bot)2021-03-291-1/+2
* [3.9] bpo-43517: Fix false positive in detection of circular imports (GH-2489...Antoine Pitrou2021-03-201-1/+1
* bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)Miss Islington (bot)2021-03-171-39/+79
* bpo-43499: Silence compiler warnings about using legacy C API on Windows (GH-...Serhiy Storchaka2021-03-162-0/+9
* bpo-42500: Fix recursion in or after except (GH-23568) (#24501)Mark Shannon2021-03-024-16/+16
* bpo-42780: Fix set_inheritable() for O_PATH file descriptors on Linux (GH-241...cptpcrd2021-01-211-0/+7
* Bring Python into the new year. (GH-24036)Miss Islington (bot)2021-01-011-1/+1
* bpo-26564: fix obsolete comment in traceback.c (GH-23819)Miss Islington (bot)2020-12-171-1/+2
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642) (GH-23692)Victor Stinner2020-12-081-92/+132
* bpo-42536: GC track recycled tuples (GH-23623) (GH-23651)Brandt Bucher2020-12-071-0/+5
* bpo-42521: Add note about 'Python -d' only working on debug builds (GH-23607)Miss Islington (bot)2020-12-021-1/+2
* [3.9] bpo-41100: Support macOS 11 and Apple Silicon (GH-22855) (GH-23295)Ronald Oussoren2020-11-222-13/+60
* [3.9] bpo-40998: Fix a refleak in create_filter() (GH-23365) (GH-23369)Christian Heimes2020-11-181-2/+5
* bpo-40998: Address compiler warnings found by ubsan (GH-20929)Miss Islington (bot)2020-11-181-4/+3
* [3.9] bpo-39934: Account for control blocks in 'except' in compiler. (GH-2239...Irit Katriel2020-11-171-8/+11