summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-96398: Detect emcc and mpicc in compiler names in configure (#117819)Erlend E. Aasland2024-04-122-2/+12
* gh-117764: Add docstrings and signatures for the types of None, Ellipsis and ...Serhiy Storchaka2024-04-124-6/+21
* gh-117764: Use Argument Clinic for signal.set_wakeup_fd() (GH-117777)Serhiy Storchaka2024-04-126-26/+106
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-1211-30/+45
* Fix version directive indents (#117719)Hugo van Kemenade2024-04-124-8/+8
* gh-117764: Add signatures for functions in the faulthandler module (GH-117771)Serhiy Storchaka2024-04-121-26/+35
* gh-117764: Add signature for functools.partial() (GH-117775)Serhiy Storchaka2024-04-121-2/+3
* gh-117764: Add signatures and improve docstrings in the _thread module (GH-11...Serhiy Storchaka2024-04-121-46/+126
* gh-117752: Autoconf: fix PGO builds for 'make -C build' incantations (#117803)Erlend E. Aasland2024-04-122-8/+16
* gh-117764: Add signatures for some objects in the itertools module (GH-117774)Serhiy Storchaka2024-04-121-3/+6
* gh-117764: Add signatures in the atexit module (GH-117776)Serhiy Storchaka2024-04-121-5/+10
* gh-117764: Add signatures for __reduce__ and __reduce_ex__ in the _io module ...Serhiy Storchaka2024-04-123-10/+10
* gh-117764: Add signatures for some functions in the sys module (GH-117770)Serhiy Storchaka2024-04-122-35/+73
* gh-117764: Add docstrings and signatures for the __replace__ methods (GH-117768)Serhiy Storchaka2024-04-124-6/+14
* gh-117431: Adapt bytes and bytearray .find() and friends to Argument Clinic (...Erlend E. Aasland2024-04-128-164/+703
* gh-117752: Autoconf: fix -fno-semantic-interposition check (#117789)Erlend E. Aasland2024-04-122-8/+8
* gh-117752: Autoconf: store all LLVM profile data in the build directory (#117...Erlend E. Aasland2024-04-122-4/+4
* gh-76785: Handle Legacy Interpreters Properly (gh-117490)Eric Snow2024-04-119-200/+454
* gh-117787: Autoconf: fix bashisms/semantic breakage of iOS checks (#117788)Eli Schwartz2024-04-112-2/+2
* gh-116738: Make _abc module thread-safe (#117488)Brett Simmers2024-04-113-115/+205
* gh-117649: Fix file descriptor leak in (expected) failing test case (#117780)Sam Gross2024-04-111-0/+3
* gh-117649: Raise ImportError for unsupported modules in free-threaded build (...Sam Gross2024-04-119-32/+103
* gh-111506: Error if the limited API is used in free-threaded build (#117762)Sam Gross2024-04-111-0/+5
* gh-104269: Document `glob.glob` duplicates when using multiple `**` patterns ...Tomas R2024-04-111-0/+8
* gh-117233: Detect support for several hashes at hashlib build time (GH-117234)Will Childs-Klein2024-04-112-10/+62
* gh-117722: Fix Stream.readuntil with non-bytes buffer objects (#117723)Bruce Merry2024-04-115-14/+27
* gh-101549: fix documentation of xml.etree.ElementInclude (#101550)Mikhail B2024-04-112-26/+22
* gh-115142: Skip ``test_capi/test_opt.py`` if ``_testinternalcapi`` is not ava...Kirill Podoprigora2024-04-111-2/+3
* Fix markup of `win32_ver` in `platform.rst` (#116492)Nikita Sobolev2024-04-111-2/+2
* gh-117709: Add vectorcall support for str() with positional-only arguments (#...Erlend E. Aasland2024-04-113-0/+72
* gh-113317: Add ParseArgsCodeGen class (#117707)Victor Stinner2024-04-114-846/+953
* gh-113317: Add Codegen class to Argument Clinic (#117626)Victor Stinner2024-04-118-180/+183
* gh-117711: Only check for 'test/wheeldata' when it's actually used (#117712)Karolina Surma2024-04-111-0/+4
* gh-117606: Truncate extremely long error message in `test_exceptions` (#117670)Nice Zombies2024-04-111-1/+2
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-1118-418/+2012
* GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726)Barney Gale2024-04-114-71/+52
* GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589)Barney Gale2024-04-104-195/+269
* gh-67224: Make linecache imports relative to improve startup speed (#117501)Pablo Galindo Salgado2024-04-101-3/+11
* GH-117546: Fix symlink resolution in `os.path.realpath('loop/../link')` (#117...Barney Gale2024-04-104-17/+7
* gh-117531: Unblock getters after non-immediate queue shutdown (#117532)Laurie O2024-04-103-5/+26
* gh-115142: Skip ``test_capi.test_dict.py`` if ``_testcapi`` and ``_testlimite...Kirill Podoprigora2024-04-101-2/+5
* gh-112536: Define `_Py_THREAD_SANITIZER` on GCC when TSan is enabled (#117702)Sam Gross2024-04-101-0/+3
* gh-117142: Port _ctypes to multi-phase init (GH-117181)neonene2024-04-1010-178/+1125
* gh-117692: Fix `AttributeError` in `DocTestFinder` on wrapped `builtin_or_met...Nikita Sobolev2024-04-103-1/+24
* gh-117686: Improve the performance of ntpath.expanduser() (#117690)Nice Zombies2024-04-102-2/+4
* gh-117431: Argument Clinic: copy forced text signature when cloning (#117591)Erlend E. Aasland2024-04-104-10/+70
* gh-117360: Clearer wording in os.path.lexists() docs (#117679)Nice Zombies2024-04-091-1/+1
* gh-117597: Clarify exception handling in the tutorial (#117681)Nice Zombies2024-04-091-3/+3
* gh-117648: Amend NEWS entry (#117697)Erlend E. Aasland2024-04-091-1/+1
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2024-04-0921-92/+548
|\