summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-42635: Mark JUMP_ABSOLUTE at end of 'for' loop as artificial to avoid spu...Mark Shannon2020-12-143-3767/+3769
* Don't generate spurious line number in try-except-finally. (#23760)Mark Shannon2020-12-143-1732/+1734
* bpo-31904: Define THREAD_STACK_SIZE for VxWorks (GH-23718)pxinwr2020-12-091-0/+4
* bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)Victor Stinner2020-12-092-26/+88
* bpo-32381: Remove unused _Py_fopen() function (GH-23711)Victor Stinner2020-12-091-27/+0
* bpo-32381: Add _PyRun_SimpleFileObject() (GH-23709)Victor Stinner2020-12-081-4/+4
* bpo-32381: Rewrite PyErr_ProgramText() (GH-23700)Victor Stinner2020-12-081-5/+10
* bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)Hai Shi2020-12-082-11/+0
* bpo-32381: Fix PyRun_SimpleFileExFlags() encoding (GH-23642)Victor Stinner2020-12-081-92/+132
* bpo-41462: Add os.set_blocking() support for VxWorks RTOS (GH-21713)pxinwr2020-12-071-1/+3
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-051-0/+5
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-043-2857/+2901
* bpo-42246: Don't forget the entry block when ensuring that all exits have a l...Mark Shannon2020-12-043-4/+10
* bpo-42521: Add note about 'Python -d' only working on debug builds (GH-23607)Pablo Galindo2020-12-021-1/+2
* bpo-42246: Make sure that line number is correct after a return, as required ...Mark Shannon2020-12-024-4813/+4923
* bpo-42500: Fix recursion in or after except (GH-23568)Mark Shannon2020-12-024-13/+16
* bpo-40939: Restore some stable API functions incorrectly deleted (GH-23606)Pablo Galindo2020-12-021-8/+103
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-015-16/+16
* bpo-42202: Store func annotations as a tuple (GH-23316)Yurii Karabas2020-11-253-153/+137
* bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488)Serhiy Storchaka2020-11-241-4/+9
* bpo-42403: Use @staticmethod in importlib (GH-23395)Victor Stinner2020-11-202-2340/+2339
* bpo-42403: Simplify importlib external bootstrap (GH-23397)Victor Stinner2020-11-192-4481/+4443
* bpo-1635741: Port _warnings to the multi-phase init (GH-23379)Victor Stinner2020-11-181-40/+30
* bpo-1635741: Convert _imp to multi-phase init (GH-23378)Victor Stinner2020-11-182-79/+120
* bpo-40998: Address compiler warnings found by ubsan (GH-20929)Christian Heimes2020-11-181-4/+3
* bpo-40998: Fix a refleak in create_filter() (GH-23365)Victor Stinner2020-11-181-3/+5
* bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353)Victor Stinner2020-11-171-23/+0
* bpo-42349: Compiler clean up. More yak-shaving for PEP 626. (GH-23267)Mark Shannon2020-11-174-4632/+4702
* bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)Victor Stinner2020-11-171-26/+3
* bpo-37205: time.time() cannot fail with fatal error (GH-23314)Victor Stinner2020-11-162-112/+132
* bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284)Victor Stinner2020-11-161-14/+2
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-131-943/+990
* bpo-42296: On Windows, fix CTRL+C regression (GH-23257)Victor Stinner2020-11-131-5/+33
* bpo-42246: Fix memory leak in compiler (GH-23256)Mark Shannon2020-11-131-7/+13
* bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)Mark Shannon2020-11-124-4538/+4539
* bpo-42260: Initialize time and warnings earlier at startup (GH-23249)Victor Stinner2020-11-124-130/+62
* Bump magic number. (GH-23245)Mark Shannon2020-11-121-111/+111
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-126-4826/+4859
* bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)Victor Stinner2020-11-103-77/+18
* bpo-42260: Compute the path config in the main init (GH-23211)Victor Stinner2020-11-103-65/+63
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-082-13/+60
* bpo-42282: Fold constants inside named expressions (GH-23190)Nick Coghlan2020-11-071-11/+43
* bpo-42260: PyConfig_Read() only parses argv once (GH-23168)Victor Stinner2020-11-051-4/+7
* bpo-42260: Add _PyConfig_FromDict() (GH-23167)Victor Stinner2020-11-052-58/+356
* bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)Pablo Galindo2020-11-051-7/+1
* bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)Victor Stinner2020-11-043-10/+96
* bpo-42260: Main init modify sys.flags in-place (GH-23150)Victor Stinner2020-11-042-73/+85
* bpo-1635741: Fix ref leak in _PyWarnings_Init() error path (GH-23151)Victor Stinner2020-11-042-11/+5
* bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)Victor Stinner2020-11-041-216/+115