summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-114050: Fix crash when more than two arguments are passed to int() (GH-114...kcatss2024-01-183-1/+4
* gh-104522: Fix test_subprocess failure when build Python in the root home dir...Serhiy Storchaka2024-01-181-8/+7
* gh-114231: Fix indentation in enum.rst (#114232)Miyashita Yosuke2024-01-181-1/+1
* gh-96905: In IDLE code, stop redefining built-ins 'dict' and 'object' (#114227)Terry Jan Reedy2024-01-188-42/+45
* gh-114211: Update EmailMessage doc about ordered keys (#114224)Terry Jan Reedy2024-01-181-3/+3
* gh-113205: test_multiprocessing.test_terminate: Test the API on threadpools (...Petr Viktorin2024-01-181-3/+8
* gh-104522: Fix OSError raised when run a subprocess (#114195)Serhiy Storchaka2024-01-184-18/+29
* gh-114149: [Enum] revert #114160 and add more tuple-subclass tests (GH-114215)Ethan Furman2024-01-182-9/+24
* gh-112984: Fix test_ctypes.test_loading.test_load_dll_with_flags when directo...Steve Dower2024-01-181-1/+1
* gh-112984 Update Windows build and installer for free-threaded builds (GH-113...Steve Dower2024-01-1776-244/+1436
* gh-38807: Fix race condition in Lib/trace.py (GH-110143)buermarc2024-01-172-2/+4
* Fix typo in tkinter.ttk.rst (GH-106157)Christophe Nanteuil2024-01-171-1/+1
* gh-105102: Fix nested unions in structures when the system byteorder is the o...Sheidan2024-01-173-2/+22
* gh-114149: [Enum] fix tuple subclass handling when using custom __new__ (GH-1...Ethan Furman2024-01-173-3/+20
* gh-114070: fix token reference warnings in expressions.rst (#114169)Sergey B Kirpichev2024-01-171-2/+3
* gh-114178: Fix generate_sbom.py for out-of-tree builds (#114179)Erlend E. Aasland2024-01-171-0/+1
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2024-01-177-2/+71
|\
| * gh-112343: pdb: Use tokenize to replace convenience variables (#112380)Tian Gao2024-01-173-1/+45
| * gh-111301: Advertise importlib methods removal in What's new in Python 3.12 (...Karolina Surma2024-01-171-0/+12
| * gh-104282: Fix null pointer dereference in `lzma._decode_filter_properties` (...Radislav Chugunov2024-01-173-1/+14
* | Post 3.13.0a3Thomas Wouters2024-01-171-1/+1
* | Python 3.13.0a3v3.13.0a3Thomas Wouters2024-01-17235-896/+3024
|/
* gh-86179: Skip test case that fails on POSIX with unversioned binary (GH-114136)Steve Dower2024-01-171-1/+2
* gh-72284: Revise lists in IDLE doc (#114174)Terry Jan Reedy2024-01-174-79/+60
* gh-81479: For Help => IDLE Doc, stop double-spacing some lists. (#114168)Terry Jan Reedy2024-01-171-1/+1
* gh-112043: Align concurrent.futures.Executor.map docs with implementation (#1...Erlend E. Aasland2024-01-171-5/+5
* gh-88531 Fix dataclass __post_init__/__init__ interplay documentation (gh-107...Steffen Zeile2024-01-171-3/+3
* gh-106293: Fix typos in Objects/object_layout.md (#106294)Mano Sriram2024-01-161-3/+3
* GH-110109: pathlib docs: bring `from_uri()` and `as_uri()` together. (#110312)Barney Gale2024-01-161-49/+61
* Fix typo in c_annotations.py comment (#108773)Kuan-Wei Chiu2024-01-161-1/+1
* gh-94220: Align fnmatch docs with the implementation and amend markup (#114152)Erlend E. Aasland2024-01-161-12/+14
* GH-78988: Document `pathlib.Path.glob()` exception propagation. (#114036)Barney Gale2024-01-161-0/+4
* gh-113655: Increase default stack size for PGO builds to avoid C stack exhaus...Steve Dower2024-01-162-3/+9
* gh-112529: Track if debug allocator is used as underlying allocator (#113747)Sam Gross2024-01-164-6/+21
* Update copyright years to 2024. (GH-113608)solya0x2024-01-1610-18/+16
* GH-114013: fix setting `HOSTRUNNER` for `Tools/wasm/wasi.py` (GH-114097)Brett Cannon2024-01-168-12/+15
* Clean up backslash avoiding code in ast, fix typo (#113605)Shantanu2024-01-161-8/+5
* gh-113659: Skip hidden .pth files (GH-113660)Serhiy Storchaka2024-01-163-1/+52
* Fix 'expresion' typo in IDLE doc (#114130)Terry Jan Reedy2024-01-161-48/+71
* Docs: Improve multiprocessing.SharedMemory reference (#114093)Erlend E. Aasland2024-01-161-38/+46
* gh-114096: Restore privileges in _winapi.CreateJunction after creating the ju...Steve Dower2024-01-162-7/+24
* gh-114069: Revise Tutorial Methods paragraph (#114127)Terry Jan Reedy2024-01-161-6/+5
* Fix an incorrect comment in iobase_is_closed (GH-102952)Jonathon Reinhart2024-01-161-10/+9
* gh-114107: test.pythoninfo logs Windows Developer Mode (#114121)Victor Stinner2024-01-161-16/+44
* gh-111968: Use per-thread freelists for PyContext in free-threading (gh-114122)Donghee Na2024-01-169-48/+32
* gh-113626: Add allow_code parameter in marshal functions (GH-113648)Serhiy Storchaka2024-01-1610-53/+356
* gh-102468: Document `PyCFunction_New*` and `PyCMethod_New` (GH-112557)AN Long2024-01-162-0/+49
* gh-114107: Fix importlib.resources symlink test if symlinks aren't supported ...Petr Viktorin2024-01-161-0/+2
* gh-113858: GH Actions: Limit max ccache size for the asan build (GH-114113)Petr Viktorin2024-01-161-0/+1
* Docs: Align multiprocessing.shared_memory docs with Sphinx recommendations (#...Erlend E. Aasland2024-01-162-47/+54