summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-113191: Add support of os.fchmod() on Windows (GH-113192)Serhiy Storchaka2023-12-242-27/+59
* gh-111784: Fix two segfaults in the elementtree module (GH-113405)Kirill Podoprigora2023-12-241-2/+14
* gh-112205: Support docstring for `@getter` (#113160)Donghee Na2023-12-204-49/+204
* gh-113119: Fix the macOS framework installer build (#113268)Gregory P. Smith2023-12-191-1/+10
* gh-113039: Avoid using leading dots in the include path for frozen getpath.py...Itamar Oren2023-12-181-1/+1
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-0/+24
* gh-113149: Improve error message when JSON has trailing comma (GH-113227)Carson Radtke2023-12-171-0/+14
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-6/+10
* gh-113202: Add a strict option to itertools.batched() (gh-113203)Raymond Hettinger2023-12-162-21/+40
* gh-111964: Add _PyRWMutex a "readers-writer" lock (gh-112859)Sam Gross2023-12-161-0/+99
* gh-113172: Fix compiler warnings in Modules/_xxinterpqueuesmodule.c (GH-113173)Serhiy Storchaka2023-12-151-1/+3
* bpo-36796: Clean the error handling in _testcapimodule.c (GH-13085)Zackery Spytz2023-12-142-14/+50
* gh-86179: Avoid making case-only changes when calculating realpath() during i...Steve Dower2023-12-141-2/+11
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-142-23/+71
* gh-112205: Update textio module to use `@getter` as possible. (gh-113095)Donghee Na2023-12-142-49/+125
* gh-111049: Fix crash during garbage collection of the BytesIO buffer object (...Serhiy Storchaka2023-12-141-10/+4
* gh-86179: Implement realpath() on Windows for getpath.py calculations (GH-113...Steve Dower2023-12-131-0/+39
* gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959)Diego Russo2023-12-132-59/+124
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-1312-24/+0
* gh-112205: Support `@setter` annotation from AC (gh-112922)Donghee Na2023-12-136-52/+113
* gh-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)Sam Gross2023-12-131-0/+2
* gh-76785: Add Interpreter.prepare_main() (gh-113021)Eric Snow2023-12-121-0/+56
* gh-76785: More Fixes for test.support.interpreters (gh-113012)Eric Snow2023-12-124-2/+1692
* gh-76785: Fixes for test.support.interpreters (gh-112982)Eric Snow2023-12-124-169/+401
* gh-51944: fix type and missing addition in gh-112823 (#112996)Ronald Oussoren2023-12-121-1/+4
* gh-87286: Add a number of LOG_* constants to syslog (#24432)Ronald Oussoren2023-12-121-0/+24
* gh-112529: Use atomic operations for `gcstate->collecting` (#112533)Sam Gross2023-12-111-184/+168
* Add a fuzzer for `Py_CompileStringExFlags` (#111721)Brad Larsen2023-12-109-0/+262
* gh-51944: Add missing macOS constants to termios (#112823)Ronald Oussoren2023-12-071-0/+61
* gh-112730: Use color to highlight error locations (gh-112732)Pablo Galindo Salgado2023-12-062-1/+49
* gh-111178: Define `visitproc` callback functions properly and remove unnecess...Christopher Chavez2023-12-061-9/+13
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-061-0/+16
* gh-110190: Fix ctypes structs with array on Arm (#112604)Diego Russo2023-12-052-18/+71
* gh-105323: Remove `WITH_APPLE_EDITLINE` to use the same declaration for all e...Tian Gao2023-12-051-6/+2
* gh-112334: Restore subprocess's use of `vfork()` & fix `extra_groups=[]` beha...Gregory P. Smith2023-12-041-2/+10
* gh-112535: Add test on _Py_ThreadId() (#112709)Victor Stinner2023-12-041-0/+14
* gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...Gregory P. Smith2023-12-042-10/+26
* gh-109786: Fix leaks and crash when re-enter itertools.pairwise.__next__() (G...Serhiy Storchaka2023-12-041-2/+11
* gh-112678: Declare `Tkapp_CallDeallocArgs()` as `static` (GH-112679)Christopher Chavez2023-12-041-1/+1
* gh-112567: Add _PyTimeFraction C API (#112568)Victor Stinner2023-12-011-35/+19
* gh-112567: Add _Py_GetTicksPerSecond() function (#112587)Victor Stinner2023-12-013-107/+114
* bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503)Zackery Spytz2023-12-011-5/+11
* gh-112510: Add `readline.backend` for the backend readline uses (GH-112511)Tian Gao2023-12-011-1/+8
* gh-112205: Update stringio module to use AC for the thread-safe (gh-112549)Donghee Na2023-11-302-35/+79
* gh-112205: Support @getter annotation from AC (gh-112396)Donghee Na2023-11-302-49/+88
* Add more C API tests (GH-112522)Serhiy Storchaka2023-11-291-0/+33
* gh-112454: Disable TLS-PSK if OpenSSL was built without PSK support (#112491)Grant Ramsay2023-11-291-0/+28
* gh-109802: Increase test coverage for complexobject.c (GH-112452)Sergey B Kirpichev2023-11-281-0/+59
* gh-112105: Make completer delims work on libedit (gh-112106)Tian Gao2023-11-281-0/+16
* gh-112071: Make `_random.Random` methods thread-safe in `--disable-gil` build...Radislav Chugunov2023-11-282-10/+46