summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-086-52/+38
* gh-111140: PyLong_From/AsNativeBytes: Take *flags* rather than just *endianne...Steve Dower2024-04-051-7/+7
* gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436)Sam Gross2024-04-042-9/+37
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-041-0/+6
* gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...Steve Dower2024-04-031-0/+4
* gh-114329: Fix PyList_GetItemRef() limited C API definition (#117520)Victor Stinner2024-04-035-4/+10
* gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)Peter Lazorchak2024-04-031-0/+12
* gh-76785: Raise InterpreterError, Not RuntimeError (gh-117489)Eric Snow2024-04-031-4/+4
* GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11...Barney Gale2024-04-031-0/+14
* gh-91565: Update issue tracker URL in error message. (#117450)Ezio Melotti2024-04-031-2/+2
* gh-76785: Consolidate Some Interpreter-related Testing Helpers (gh-117485)Eric Snow2024-04-022-250/+249
* gh-76785: Add PyInterpreterConfig Helpers (gh-117170)Eric Snow2024-04-021-60/+146
* gh-117440: Make `syslog` thread-safe in free-threaded builds (#117441)Sam Gross2024-04-022-5/+19
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-023-6/+21
* gh-94808: Fix refcounting in PyObject_Print tests (GH-117421)Petr Viktorin2024-04-011-0/+4
* gh-117142: ctypes: Unify meta tp slot functions (GH-117143)neonene2024-04-013-73/+46
* gh-94808:Improve coverage of PyObject_Print (GH-98749)MonadChains2024-04-014-1/+138
* gh-117142: ctypes: Migrate global vars to module state (GH-117189)neonene2024-03-296-222/+235
* gh-117310: Remove extra DECREF on "no ciphers" error path in `_ssl._SSLContex...Gregory P. Smith2024-03-281-1/+0
* gh-115627: Fix PySSL_SetError handling SSL_ERROR_SYSCALL (GH-115628)yevgeny hong2024-03-261-30/+18
* gh-99108: Refresh HACL*; update modules accordingly; fix namespacing (GH-117237)Jonathan Protzenko2024-03-2621-1813/+1567
* gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resize() (GH-11...Serhiy Storchaka2024-03-254-1/+58
* gh-112383: teach dis how to interpret ENTER_EXECUTOR (#117171)Irit Katriel2024-03-233-22/+84
* gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)Erik Soma2024-03-231-0/+1
* GH-117108: Change the size of the GC increment to about 1% of the total heap ...Mark Shannon2024-03-221-1/+1
* gh-113024: C API: Add PyObject_GenericHash() function (GH-113025)Serhiy Storchaka2024-03-222-1/+12
* gh-117068: Remove useless code in bytesio.c:resize_buffer() (GH-117069)NGRsoftlab2024-03-221-3/+0
* gh-105716: Fix _PyInterpreterState_IsRunningMain() For Embedders (gh-117140)Eric Snow2024-03-221-2/+20
* gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131)Sam Gross2024-03-211-0/+8
* gh-76785: Drop PyInterpreterID_Type (gh-117101)Eric Snow2024-03-215-25/+141
* gh-115754: Add Py_GetConstant() function (#116883)Victor Stinner2024-03-214-1/+85
* gh-105716: Update interp->threads.main After Fork (gh-117049)Eric Snow2024-03-211-0/+4
* gh-76785: Clean Up Interpreter ID Conversions (gh-117048)Eric Snow2024-03-213-108/+32
* gh-116522: Stop the world before fork() and during shutdown (#116607)Sam Gross2024-03-211-7/+21
* gh-114314: ctypes: remove stgdict and switch to heap types (GH-116458)Petr Viktorin2024-03-206-1404/+1402
* gh-116773: Ensure overlapped objects on Windows are not deallocated too early...jkriegshauser2024-03-201-0/+18
* gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platf...Serhiy Storchaka2024-03-203-0/+25
* gh-94808: add tests covering `PyFunction_{Get,Set}Closure` (GH-99429)Nikita Sobolev2024-03-201-0/+29
* GH-108362: Incremental Cycle GC (GH-116206)Mark Shannon2024-03-201-15/+10
* gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677)Sam Gross2024-03-193-5/+7
* gh-116417: Move limited C API complex.c tests to _testlimitedcapi (#117014)Victor Stinner2024-03-195-62/+84
* gh-116417: Move limited C API dict.c tests to _testlimitedcapi (#117006)Victor Stinner2024-03-195-279/+297
* gh-116417: Move limited C API long.c tests to _testlimitedcapi (#117001)Victor Stinner2024-03-198-895/+936
* gh-116417: Move limited C API unicode.c tests to _testlimitedcapi (#116993)Victor Stinner2024-03-196-1883/+1961
* gh-116417: Move limited C API abstract.c tests to _testlimitedcapi (#116986)Victor Stinner2024-03-197-647/+693
* gh-116417: Fix WASI build of _testlimitedcapi (#116974)Victor Stinner2024-03-1810-24/+26
* gh-116417: Move limited C API list.c tests to _testlimitedcapi (#116602)Victor Stinner2024-03-187-322/+368
* gh-115119: Switch Windows build to mpdecimal external (GH-115182)Zachary Ware2024-03-181-0/+17
* gh-115874: Don't use module state in teedataobject tp_dealloc (#116204)Erlend E. Aasland2024-03-181-5/+3
* gh-115538: Emit warning when use bool as fd in _io.WindowsConsoleIO (GH-116925)AN Long2024-03-181-0/+7