summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-136710: Fix bad indentation in `os.chdir` docstring (GH-136721)Zachary Ware2025-07-161-2/+2
* [3.13] gh-135108: Fix utmp.h inclusion in posixmodule.c on NetBSD (GH-135109)...Miss Islington (bot)2025-06-041-3/+3
* [3.13] gh-127081: use `getlogin_r` if available (gh-132751) (#135098)Sam Gross2025-06-031-0/+18
* [3.13] gh-118201: Simplify conv_confname (#126089) (#131375)Malcolm Smith2025-03-181-100/+47
* [3.13] gh-129539: Include sysexits.h before checking EX_OK (#129590)Collin Funk2025-02-021-4/+4
* [3.13] gh-58689: Fix os.kill() error handling on Windows (GH-128932) (#128937)Miss Islington (bot)2025-01-171-18/+9
* [3.13] gh-127614: Correctly check for ttyname_r() in configure (#128503) (#12...Erlend E. Aasland2025-01-111-1/+1
* [3.13] gh-93312: Include <sys/pidfd.h> to get PIDFD_NONBLOCK (GH-127593) (#12...Miss Islington (bot)2024-12-051-0/+3
* [3.13] gh-126688: Reinit import lock after fork (GH-126692) (GH-126765)Miss Islington (bot)2024-11-121-0/+1
* [3.13] gh-126303: Fix pickling and copying of os.sched_param objects (GH-1263...Miss Islington (bot)2024-11-051-0/+17
* [3.13] gh-124917: Allow keyword args to os.path.exists/lexists on Windows (GH...Jelle Zijlstra2024-10-111-4/+2
* [3.13] gh-102511: Change the `os.path.splitroot` param name from `path` back ...Jelle Zijlstra2024-10-081-2/+2
* [3.13] gh-123797: Check for runtime availability of `ptsname_r` on macos (GH-...Miss Islington (bot)2024-09-301-10/+36
* [3.13] gh-123014: Disable pidfd API on older Android versions (GH-124458) (#1...Malcolm Smith2024-09-261-1/+4
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-2/+2
* [3.13] gh-120586: Fix several "unused function" warnings in `posixmodule.c` (...Miss Islington (bot)2024-06-171-1/+3
* [3.13] gh-117657: Fix TSAN race involving import lock (GH-118523) (#120169)Miss Islington (bot)2024-06-061-9/+2
* [3.13] gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843) (GH-120066)Ɓukasz Langa2024-06-041-0/+33
* [3.13] gh-89928: Fix integer conversion of device numbers (GH-31794) (GH-120053)Miss Islington (bot)2024-06-041-15/+73
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Miss Islington (bot)2024-05-241-193/+227
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Miss Islington (bot)2024-05-221-309/+290
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Miss Islington (bot)2024-05-151-1/+1
* gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G...Miss Islington (bot)2024-05-091-154/+22
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-118486: Switch mkdir(mode=0o700) on Windows to use OWNER RIGHTS instead of...Steve Dower2024-05-021-3/+16
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-021-2/+156
* gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possible (GH-118381)Nice Zombies2024-04-301-1/+1
* gh-102511: Speed up os.path.splitroot() with native helpers (GH-118089)Nice Zombies2024-04-251-0/+44
* gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...Steve Dower2024-04-031-0/+4
* GH-114847: Raise FileNotFoundError when getcwd() returns '(unreachable)' (#11...Barney Gale2024-04-031-0/+14
* gh-116522: Refactor `_PyThreadState_DeleteExcept` (#117131)Sam Gross2024-03-211-0/+8
* gh-105716: Update interp->threads.main After Fork (gh-117049)Eric Snow2024-03-211-0/+4
* gh-116522: Stop the world before fork() and during shutdown (#116607)Sam Gross2024-03-211-7/+21
* gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677)Sam Gross2024-03-191-3/+3
* gh-116195: Implements a fast path for nt.getppid (GH-116205)vxiiduu2024-03-141-2/+84
* gh-116541: Handle errors correctly in `_pystatvfs_fromstructstatvfs` (#116542)Nikita Sobolev2024-03-121-32/+36
* gh-110850: Fix _PyTime_FromSecondsDouble() API (#116606)Victor Stinner2024-03-111-10/+20
* gh-116520: Fix error handling in `os_get_terminal_size_impl` in `posixmodule`...Nikita Sobolev2024-03-091-6/+17
* gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)Serhiy Storchaka2024-03-071-4/+4
* gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (#116...Nikita Sobolev2024-03-071-9/+19
* gh-116404: Handle errors correctly in `wait_helper` in `posixmodule` (#116405)Nikita Sobolev2024-03-061-26/+29
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-201-0/+1
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-201-1/+1
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-161-0/+1
* gh-114570: Add PythonFinalizationError exception (#115352)Victor Stinner2024-02-141-3/+3
* gh-87804: Fix the refleak in error handling of `_pystatvfs_fromstructstatfs` ...Nikita Sobolev2024-02-121-8/+9
* gh-87804: Fix error handling and style in `_pystatvfs_fromstructstatfs` (#115...Nikita Sobolev2024-02-121-31/+33
* GH-87804: Fix counter overflow in statvfs on macOS (#99570)Ronald Oussoren2024-02-101-0/+101
* gh-110481: Implement inter-thread queue for biased reference counting (#114824)Sam Gross2024-02-091-0/+4
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-071-1/+1