summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Docs: Miscellaneous corrections to simple statements in the language referenc...Beomsoo Kim2024-11-151-8/+8
* gh-126476: Raise IllegalMonthError for calendar.formatmonth() when the input ...Nadeshiko Manju2024-11-153-4/+28
* Add PEP 761 to What's New (#126550)Seth Michael Larson2024-11-151-0/+10
* gh-122549: Add platform.invalidate_caches() (#122547)Bénédikt Tran2024-11-155-1/+67
* Fix intermittent failures for the `PyUnstable_Object_EnableDeferredRefcount` ...Peter Bierma2024-11-151-10/+3
* gh-125063: marshal: Add version 5, improve documentation (GH-126829)Petr Viktorin2024-11-157-41/+110
* gh-89083: small docs fixup for UUIDv8 (#126857)Bénédikt Tran2024-11-151-3/+6
* gh-118973: Add _tkinter to freethreaded MSI (GH-126768)Steve Dower2024-11-152-1/+4
* gh-126312: Don't traverse frozen objects on the free-threaded build (#126338)Peter Bierma2024-11-153-5/+54
* gh-126554: ctypes: Correctly handle NULL dlsym values (GH-126555)George Alexopoulos2024-11-154-31/+220
* GH-124567: Reduce overhead of debug build for GC. Should help CI performance ...Mark Shannon2024-11-151-1/+9
* gh-103951: enable optimization for fast attribute access on module subclasses...Sergey B Kirpichev2024-11-155-4/+6
* gh-126433: Update hacl-star (GH-126791)Victor Stinner2024-11-1510-30/+37
* gh-126807: pygettext: Do not attempt to extract messages from function defini...Tomas R.2024-11-143-5/+36
* GH-126766: `url2pathname()`: handle empty authority section. (#126767)Barney Gale2024-11-144-9/+14
* gh-124111: Update tkinter for compatibility with Tcl/Tk 9.0.0 (GH-124156)Marc Culler2024-11-1411-195/+338
* gh-126061: add new functions to `refcounts.dat` (#126788)RUANG (James Roy)2024-11-141-0/+13
* GH-117759: Update GC docs for incremental collection (GH-126695)Mark Shannon2024-11-141-51/+87
* gh-123832: Adjust `socket.getaddrinfo` docs for better POSIX compliance (GH-1...Petr Viktorin2024-11-141-3/+32
* Document that return-less user-defined functions return None (#126769)John Marshall2024-11-141-1/+2
* Doc: Recommend shlex.quote alongside pipes removal (#126570)Colin Watson2024-11-141-0/+2
* gh-126731: Update outdated project information in `pprint.pp` doc (#126732)Wulian2024-11-141-1/+1
* Add Savannah to CODEOWNERS for argparse and the JIT (#126814)Savannah Ostrowski2024-11-131-1/+4
* GH-118289: Fix handling of non-directories in `posixpath.realpath()` (#120127)Barney Gale2024-11-133-4/+75
* GH-126606: don't write incomplete pyc files (GH-126627)CF Bolz-Tereick2024-11-133-1/+40
* gh-126188: Update bundled pip to 24.3.1 (gh-126805)Stéphane Bidoul2024-11-133-1/+2
* gh-89640: Pull in update to float word order detection in autoconf-archive (#...Hood Chatham2024-11-135-134/+195
* gh-126390: Support for preserving order of options and nonoption arguments in...Serhiy Storchaka2024-11-135-5/+48
* gh-109413: Enable `strict_optional` for `libregrtest/main.py` (#126394)sobolevn2024-11-134-8/+21
* gh-126623: Update libexpat to 2.6.4, make future updates easier (GH-126792)Seth Michael Larson2024-11-137-22/+119
* gh-123465: Ensure PyType_FromMetaclass avoids extra strcmp (GH-125460)neonene2024-11-131-2/+2
* gh-126456: Fix _pyrepl curses tigetstr() (#126472)Victor Stinner2024-11-131-2/+2
* gh-123619: Add an unstable C API function for enabling deferred reference cou...Peter Bierma2024-11-138-1/+128
* gh-126175: Add attributes to TOMLDecodeError. Deprecate free-form `__init__` ...Taneli Hukkinen2024-11-134-52/+163
* gh-126341: add release check to `__iter__` method of `memoryview` (#126759)Ritvik Pasham2024-11-133-0/+4
* gh-71936: Fix race condition in multiprocessing.Pool (GH-124973)Petr Viktorin2024-11-133-13/+22
* gh-104745: Limit starting a patcher more than once without stopping it (#126649)Red4Ru2024-11-133-2/+62
* bpo-46128: Strip IsolatedAsyncioTestCase frames from reported stacktraces (#3...Andrew Svetlov2024-11-132-0/+3
* gh-126757: fix minor typo (GH-126758)Yuxuan Zhang2024-11-121-1/+1
* gh-119826: Improved fallback for ntpath.abspath() on Windows (GH-119938)Nice Zombies2024-11-123-18/+35
* gh-126688: Reinit import lock after fork (#126692)Sam Gross2024-11-124-0/+11
* GH-120423: `pathname2url()`: handle forward slashes in Windows paths (#126593)Barney Gale2024-11-123-6/+14
* gh-116897: Deprecate generic false values in urllib.parse.parse_qsl() (GH-116...Serhiy Storchaka2024-11-125-9/+45
* gh-89083: add support for UUID version 8 (RFC 9562) (#123224)Bénédikt Tran2024-11-125-19/+109
* gh-126705: Make os.PathLike more like a protocol (#126706)Stephen Morton2024-11-123-0/+6
* gh-76785: Improved Subinterpreters Compatibility with 3.12 (2/2) (gh-126707)Eric Snow2024-11-129-91/+247
* gh-95382: Use cache for indentations in the JSON encoder (GH-118636)Serhiy Storchaka2024-11-121-64/+118
* gh-126133: Only use start year in PSF copyright, remove end years (#126236)Hugo van Kemenade2024-11-1245-50/+47
* gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065)RUANG (James Roy)2024-11-127-0/+164
* gh-125916: Allow functools.reduce() 'initial' to be a keyword argument (#125917)Sayandip Dutta2024-11-128-13/+76