summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-127257: Add hex code to ssl "unknown error" message (GH-127360)Petr Viktorin2025-01-101-16/+47
* gh-111178: fix UBSan failures for `gdbmobject` (GH-128178)Bénédikt Tran2025-01-101-13/+20
* gh-111178: fix UBSan failures in `Modules/_bz2module.c` (GH-128238)Bénédikt Tran2025-01-101-4/+10
* gh-128691: Use deferred reference counting on `_thread._local` (#128693)Sam Gross2025-01-101-0/+4
* gh-127196: Fix crash in `_interpreters`, when `shared` had invalid encodings ...sobolevn2025-01-091-1/+6
* gh-128002: fix `asyncio.all_tasks` against concurrent deallocations of tasks ...Kumar Aditya2025-01-091-5/+14
* gh-128629: Add Py_PACK_VERSION and Py_PACK_FULL_VERSION (GH-128630)Petr Viktorin2025-01-095-1/+175
* GH-66409: check if exec_prefix is the same as prefix before searching executa...Filipe Laíns 🇵🇸2025-01-081-0/+2
* GH-127970: find the runtime library when dladdr is available (#127972)Filipe Laíns 🇵🇸2025-01-081-23/+15
* gh-127614: Correctly check for ttyname_r() in configure (#128503)Erlend E. Aasland2025-01-072-4/+4
* gh-127350: Add more tests for Py_fopen() (GH-128587)Serhiy Storchaka2025-01-072-21/+12
* gh-111178: fix UBSan failures in `Modules/_sre/sre.c` (GH-128250)Bénédikt Tran2025-01-071-35/+56
* gh-111178: fix UBSan failures in `Modules/_abc.c` (GH-128253)Bénédikt Tran2025-01-071-5/+9
* GH-128375: Better instrument for `FOR_ITER` (GH-128445)Mark Shannon2025-01-061-0/+21
* gh-127350: Add Py_fopen() and Py_fclose() functions (#127821)Victor Stinner2025-01-067-15/+98
* gh-102471: convert decimal module to use PyLong_Export API (PEP 757) (#128267)Sergey B Kirpichev2025-01-061-24/+27
* gh-128002: fix many thread safety issues in asyncio (#128147)Kumar Aditya2025-01-042-175/+869
* gh-128400: Only show the current thread in `faulthandler` if the GIL is disab...Peter Bierma2025-01-031-3/+30
* 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 `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-031-0/+17
* gh-128104: Remove `Py_STRFTIME_C99_SUPPORT`; require C99-compliant strftime (...Zanie Blue2025-01-031-6/+0
* gh-128400: Stop-the-world when manually calling `faulthandler` (GH-128422)Peter Bierma2025-01-021-0/+5
* gh-126624: Expose error code ``XML_ERROR_NOT_STARTED`` of Expat >=2.6.4 (#126...Sebastian Pipping2025-01-021-1/+4
* gh-124130: Fix a bug in matching regular expression \B in empty string (GH-12...Serhiy Storchaka2025-01-021-12/+0
* gh-123925: Fix building curses on platforms without libncursesw (GH-128405)Serhiy Storchaka2025-01-021-1/+1
* gh-128277: remove unnecessary critical section from `socket.close` (#128305)Kumar Aditya2025-01-012-11/+3
* gh-128277: make globals variables thread safe in socket module (#128286)Kumar Aditya2024-12-311-33/+23
* gh-128277: use relaxed atomics for `sock_fd` (#128304)Kumar Aditya2024-12-311-65/+102
* gh-128279: Enhance the NetBSD compatibility for thread naming (#128280)Furkan Onder2024-12-281-0/+3
* gh-87138: convert blake2b/2s types to heap types (#127669)Bénédikt Tran2024-12-261-20/+69
* gh-124761: add `socket.SO_REUSEPORT_LB` (#124961)Thomas Grainger2024-12-261-0/+3
* gh-128198: Add missing error checks for usages of PyIter_Next() (GH-128199)Yan Yanchii2024-12-251-0/+13
* gh-128002: use internal llist implementation for asyncio tasks (#128256)Kumar Aditya2024-12-251-50/+20
* gh-128035: Add ssl.HAS_PHA to detect libssl PHA support (GH-128036)Will Childs-Klein2024-12-241-0/+6
* gh-128217: Validate the normalized_environment variable instead of the simila...Sergey Muraviov2024-12-241-1/+1
* gh-127295: ctypes: Switch field accessors to fixed-width integers (GH-127297)Petr Viktorin2024-12-204-652/+501
* gh-127946: Use a critical section for `CFuncPtr` attributes (GH-128109)Peter Bierma2024-12-202-29/+245
* gh-115999: Specialize `STORE_ATTR` in free-threaded builds. (gh-127838)Neil Schemenauer2024-12-191-0/+9
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-191-3/+22
* gh-128008: Add `PyWeakref_IsDead()` (GH-128009)Sam Gross2024-12-191-0/+14
* gh-128083: Fix macro redefinition warning in clinic. (GH-127950)Peter Bierma2024-12-192-2/+59
* gh-127688: Add `SCHED_DEADLINE` and `SCHED_NORMAL` constants to `os` module (...RUANG (James Roy)2024-12-191-0/+10
* gh-121621: clear running loop early in asyncio (#128004)Kumar Aditya2024-12-181-0/+5
* gh-127949: deprecate `asyncio.get_event_loop_policy` (#128053)Kumar Aditya2024-12-181-1/+1
* gh-127897: fix HACL* build on macOS/Catalina (GH-127932)aeiouaeiouaeiouaeiouaeiouaeiou2024-12-182-1/+23
* gh-126742: Add _PyErr_SetLocaleString, use it for gdbm & dlerror messages (GH...Bénédikt Tran2024-12-178-53/+68
* gh-126907: make `atexit` thread safe in free-threading (#127935)Peter Bierma2024-12-161-78/+75
* gh-111178: fix UBSan failures in `_elementtree.c` (#127982)Bénédikt Tran2024-12-161-53/+80