summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.14] gh-124621: Emscripten: Support pyrepl in browser (GH-136931) (GH-136988)Łukasz Langa2025-07-221-0/+20
* [3.14] gh-136710: Fix bad indentation in `os.chdir` docstring (GH-136719)Zachary Ware2025-07-161-2/+2
* [3.14] gh-131591: Add Py_ prefix to MAX_SCRIPT_PATH_SIZE; remove unprefixed s...Miss Islington (bot)2025-06-261-1/+2
* [3.14] gh-135108: Fix utmp.h inclusion in posixmodule.c on NetBSD (GH-135109)...Miss Islington (bot)2025-06-041-3/+3
* [3.14] gh-127081: use `getlogin_r` if available (gh-132751) (gh-135097)Miss Islington (bot)2025-06-031-0/+18
* gh-131296: Avoid posixmodule.c warning (GH-133142)Wulian2332025-05-051-1/+1
* gh-81793: Always call linkat() from os.link(), if available (GH-132517)Serhiy Storchaka2025-05-041-62/+43
* gh-132987: Support __index__() in the posix module (GH-133096)Serhiy Storchaka2025-04-291-4/+17
* gh-131591: Reset RemoteDebuggerSuupport state after fork (#132793)Nadeshiko Manju2025-04-251-0/+10
* GH-131296: Fix parenthesis warnings on Windows-specific code (GH-131905)Chris Eibl2025-03-311-1/+1
* Fix Windows build warnings (#131487)Victor Stinner2025-03-201-1/+0
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-0/+1
* gh-124878: Fix race conditions during interpreter finalization (#130649)Sam Gross2025-03-061-1/+1
* gh-111178: fix UBSan failures in `Modules/posixmodule.c` (GH-129788)Bénédikt Tran2025-02-241-20/+31
* gh-129539: Reorganize posixmodule.c header (#129558)Victor Stinner2025-02-021-323/+347
* gh-129354: Use PyErr_FormatUnraisable() function (#129514)Victor Stinner2025-01-311-6/+12
* gh-128911: Add PyImport_ImportModuleAttr() function (#128912)Victor Stinner2025-01-301-1/+1
* gh-129205: Add os.readinto() API for reading data into a caller provided buff...Cody Maloney2025-01-261-0/+33
* gh-58689: Fix os.kill() error handling on Windows (#128932)Victor Stinner2025-01-171-18/+9
* gh-127614: Correctly check for ttyname_r() in configure (#128503)Erlend E. Aasland2025-01-071-1/+1
* gh-127688: Add `SCHED_DEADLINE` and `SCHED_NORMAL` constants to `os` module (...RUANG (James Roy)2024-12-191-0/+10
* gh-127627: Add `posix._emscripten_debugger` function (#127628)Hood Chatham2024-12-061-1/+21
* gh-93312: Include <sys/pidfd.h> to get PIDFD_NONBLOCK (#127593)Victor Stinner2024-12-051-0/+3
* gh-118201: Simplify conv_confname (#126089)Malcolm Smith2024-11-191-100/+47
* gh-126688: Reinit import lock after fork (#126692)Sam Gross2024-11-121-0/+1
* gh-126303: Fix pickling and copying of os.sched_param objects (GH-126336)Serhiy Storchaka2024-11-051-0/+17
* gh-94512: Fix forced arg format in posixmodule.c clinic code (#122516)Bénédikt Tran2024-10-261-2/+40
* gh-124917: Allow keyword args to os.path.exists/lexists on Windows (#124918)Jelle Zijlstra2024-10-111-4/+2
* gh-123014: Disable pidfd API on older Android versions (#124458)Malcolm Smith2024-09-251-1/+4
* gh-123797: Check for runtime availability of `ptsname_r` on macos (#123806)sobolevn2024-09-201-10/+36
* gh-102511: Change the `os.path.splitroot` param name from `path` back to `p` ...sobolevn2024-09-181-2/+2
* Fix typos in docs, error messages and comments (#123336)Wulian2024-08-281-1/+1
* gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...Serhiy Storchaka2024-07-191-2/+2
* gh-120586: Fix several "unused function" warnings in `posixmodule.c` (#120588)Nikita Sobolev2024-06-171-1/+3
* gh-120057: Add os.environ.refresh() method (#120059)Victor Stinner2024-06-101-0/+15
* gh-117657: Fix TSAN race involving import lock (#118523)Sam Gross2024-06-061-9/+2
* gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843)Pablo Galindo Salgado2024-06-041-0/+33
* gh-89928: Fix integer conversion of device numbers (GH-31794)Serhiy Storchaka2024-06-041-15/+73
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Nice Zombies2024-05-241-193/+227
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Nice Zombies2024-05-211-309/+290
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Steve Dower2024-05-151-1/+1
* gh-118773: Use language-invariant SDDL string instead of aliases for ACLs. (G...Steve Dower2024-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