summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-128340: add thread safe handle for `loop.call_soon_threadsafe` (#128369)Kumar Aditya2025-01-064-1/+151
* gh-90241: Clarify documentation for PyUnicode_FSConverter and PyUnicode_FSDec...Serhiy Storchaka2025-01-062-11/+36
* gh-111178: fix UBSan failures in `Objects/descrobject.c` (GH-128245)Bénédikt Tran2025-01-061-7/+10
* gh-77214: Update outdated documentation for numeric PyArg_Parse formats (GH-1...Serhiy Storchaka2025-01-061-8/+14
* gh-128089: Add PYC magic number for VALUE_WITH_FAKE_GLOBALS (#128097)Jelle Zijlstra2025-01-061-1/+1
* gh-102471: convert decimal module to use PyLong_Export API (PEP 757) (#128267)Sergey B Kirpichev2025-01-061-24/+27
* gh-128519: Align the docstring of untokenize() to match the docs (#128521)Tomas R.2025-01-061-10/+4
* gh-98188: Fix EmailMessage.get_payload to decode data when CTE value has extr...RanKKI2025-01-065-2/+59
* Docs: fix `MessageDefect` references in email.policy docs (#128468)Yuki Kobayashi2025-01-052-3/+2
* gh-128504: Upgrade doctest to ubuntu-24.04 (#128506)Damien2025-01-051-1/+1
* gh-128137: Update PyASCIIObject to handle interned field with the atomic oper...Donghee Na2025-01-053-10/+18
* gh-128437: Add `BOLT_COMMON_FLAGS` with `-update-debug-sections` (gh-128455)Zanie Blue2025-01-052-4/+32
* gh-115765: Document and enforce Autoconf 2.72 requirement (#128502)Erlend E. Aasland2025-01-042-3/+6
* gh-127553: Remove outdated TODO comment in _pydatetime (#127564)Beomsoo Kim2025-01-041-1/+0
* gh-127954: Document PyObject_DelItemString (#127986)RUANG (James Roy)2025-01-041-0/+7
* Docs: amend json.dump() post gh-128482 (#128489)Erlend E. Aasland2025-01-041-5/+8
* gh-126719: Clarify math.fmod docs (#127741)Stan Ulbrych2025-01-041-1/+2
* pathlib tests: create `walk()` test hierarchy without using class under test ...Barney Gale2025-01-042-39/+58
* Docs: mark up json.dump() using parameter list (#128482)Erlend E. Aasland2025-01-041-48/+70
* GH-127381: pathlib ABCs: remove `PathBase.move()` and `move_into()` (#128337)Barney Gale2025-01-044-153/+148
* gh-128152: Argument Clinic: ignore pre-processor directives inside C comments...Erlend E. Aasland2025-01-043-0/+15
* Add `check-readthedocs` pre-commit hook (#128453)sobolevn2025-01-041-0/+1
* gh-128002: fix many thread safety issues in asyncio (#128147)Kumar Aditya2025-01-043-175/+951
* gh-125985: Fix `cmodule_function()` scaling benchmark (#128460)Sam Gross2025-01-031-3/+11
* gh-128354: Consistently use LIBS over LDFLAGS in library build checks (#128359)Zanie Blue2025-01-032-43/+41
* gh-128456: Use '-reorder-functions=cdsort' for BOLT builds (#128457)Zanie Blue2025-01-032-2/+2
* gh-128400: Only show the current thread in `faulthandler` if the GIL is disab...Peter Bierma2025-01-034-5/+45
* gh-127903: Fix a crash on debug builds when calling `Objects/unicodeobject::_...Alexander Shadchin2025-01-033-3/+15
* gh-89083: improve UUIDv8 uniqueness tests (GH-128149)Bénédikt Tran2025-01-031-6/+10
* gh-111178: fix UBSan failures in `Modules/zlibmodule.c` (GH-128252)Bénédikt Tran2025-01-031-5/+9
* gh-111178: fix UBSan failures in `Objects/tupleobject.c` (GH-128251)Bénédikt Tran2025-01-031-14/+20
* gh-111178: fix UBSan failures in `Objects/enumobject.c` (GH-128246)Bénédikt Tran2025-01-031-22/+35
* gh-111178: fix UBSan failures in `Modules/curses*.c` (GH-128244)Bénédikt Tran2025-01-032-71/+114
* gh-111178: fix UBSan failures in `Modules/_csv.c` (GH-128243)Bénédikt Tran2025-01-031-28/+48
* gh-112015: Implement `ctypes.memoryview_at()` (GH-112018)Rian Hunter2025-01-036-1/+120
* gh-128317: Highlight today in colour in calendar CLI output (#128318)Hugo van Kemenade2025-01-035-13/+85
* gh-127787: refactor helpers for `PyUnicodeErrorObject` internal interface (GH...Bénédikt Tran2025-01-032-155/+293
* gh-115765: Upgrade to GNU Autoconf 2.72 (#128411)Erlend E. Aasland2025-01-038-3104/+4509
* gh-128404: Remove `asyncio` from `Lib/test/test_sys_settrace` (#128435)Thomas Grainger2025-01-031-6/+2
* gh-127529: Correct asyncio's `accept_connection` behaviour for handling `Conn...jb21702025-01-033-3/+36
* gh-128104: Remove `Py_STRFTIME_C99_SUPPORT`; require C99-compliant strftime (...Zanie Blue2025-01-035-27/+10
* gh-108202: Document calendar.TextCalendar formatting helpers (#127608)Stan Ulbrych2025-01-031-1/+26
* gh-128133: use relaxed atomics for hash of bytes (#128412)Abhijeet2025-01-031-31/+39
* gh-128404: remove asyncio from test_type_params (#128436)Thomas Grainger2025-01-031-5/+2
* gh-128426: Mention PySequence_Fast in free-threading C API HOWTO (#128428)Nathan Goldbaum2025-01-031-2/+4
* gh-128212: Fix race in `_PyUnicode_CheckConsistency` (GH-128367)Sam Gross2025-01-021-1/+1
* gh-128400: Stop-the-world when manually calling `faulthandler` (GH-128422)Peter Bierma2025-01-023-1/+36
* Remove asserts that confuse `enum _framestate` with `enum _frameowner` (GH-12...Anders Kaseorg2025-01-021-2/+0
* gh-128014: Fix passing default='' to the tkinter method wm_iconbitmap() (GH-...Zhikang Yan2025-01-023-2/+30
* Revert "Doc: Show object descriptions in the table of contents (#125757)" (#1...Hugo van Kemenade2025-01-023-10/+1