summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-2/+2
* [3.12] gh-120586: Fix several "unused function" warnings in `posixmodule.c` (...Miss Islington (bot)2024-06-171-1/+3
* [3.12] gh-89928: Fix integer conversion of device numbers (GH-31794) (GH-120054)Serhiy Storchaka2024-06-041-15/+73
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Nice Zombies2024-05-281-171/+195
* gh-118507 : Refactor ntpath native functions (gh-119381)Nice Zombies2024-05-221-311/+253
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Miss Islington (bot)2024-05-151-1/+1
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-091-2/+37
* gh-117267: Ensure DirEntry.stat().st_ctime still contains creation time durin...Miss Islington (bot)2024-04-031-0/+4
* [3.12] gh-113964: Don't prevent new threads until all non-daemon threads exit...Sam Gross2024-03-191-3/+3
* [3.12] gh-116541: Handle errors correctly in `_pystatvfs_fromstructstatvfs` (...Miss Islington (bot)2024-03-121-32/+36
* [3.12] gh-116520: Fix error handling in `os_get_terminal_size_impl` in `posix...Miss Islington (bot)2024-03-091-6/+17
* [3.12] gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule...Miss Islington (bot)2024-03-071-9/+19
* [3.12] gh-116404: Handle errors correctly in `wait_helper` in `posixmodule` (...Miss Islington (bot)2024-03-061-26/+29
* gh-111877: Fixes stat() handling for inaccessible files on Windows (GH-113716)Miss Islington (bot)2024-01-121-6/+10
* [3.12] bpo-11102: Make configure enable major(), makedev(), and minor() on HP...Miss Islington (bot)2023-12-281-4/+5
* [3.12] gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Wind...Miss Islington (bot)2023-11-111-1/+6
* [3.12] GH-111804: Drop posix.fallocate() under WASI (GH-111869) (GH-111919)Brett Cannon2023-11-091-2/+5
* GH-111293: Fix DirEntry.inode dropping higher bits on Windows (GH-111294)Miss Islington (bot)2023-10-261-3/+3
* [3.12] gh-109782: Ensure `os.path.isdir` has the same signature on all platfo...Alex Waygood2023-10-021-5/+5
* [3.12] gh-109613: _pystat_fromstructstat() checks for exceptions (GH-109618) ...Miss Islington (bot)2023-10-021-49/+72
* [3.12] gh-107913: Fix possible losses of OSError error codes (GH-107930) (#10...Miss Islington (bot)2023-08-261-43/+85
* [3.12] gh-107801: Improve the accuracy of os.lseek docs (#107935) (#108136)Erlend E. Aasland2023-08-191-4/+9
* [3.12] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107981)Steve Dower2023-08-161-1/+3
* [3.12] gh-106881: Check for linux/limits.h before including it (#107397) (#10...justdan62023-07-281-1/+1
* [3.12] gh-86493: Fix possible leaks in some modules initialization (GH-106768...Serhiy Storchaka2023-07-181-8/+4
* [3.12] gh-86493: Fix possible leaks in modules initialization: _curses_panel,...Serhiy Storchaka2023-07-181-37/+22
* [3.12] gh-105375: Improve posix error handling (GH-105592) (#105598)Miss Islington (bot)2023-06-111-4/+8
* [3.12] gh-104690 Disallow thread creation and fork at interpreter finalizatio...Miss Islington (bot)2023-06-041-2/+19
* gh-104820: Fixes os.stat on Windows to better handle file systems that do not...Miss Islington (bot)2023-05-291-4/+8
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Miss Islington (bot)2023-05-291-0/+90
* GH-103545: Add macOS specific constants for ``os.setpriority`` to ``os`` (#10...Ronald Oussoren2023-05-191-0/+12
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-104106: Add gcc fallback of mkfifoat/mknodat for macOS (gh-104129)Dong-hee Na2023-05-051-4/+12
* gh-102765: Update ntpath.isdir/isfile/islink/exists to use GetFileInformation...Finn Womack2023-04-271-118/+191
* gh-103167: Fix `-Wstrict-prototypes` warnings by using `(void)` for functions...Nikita Sobolev2023-04-051-2/+2
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-45/+146
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-101-0/+194
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-18/+40
* gh-100227: Isolate the Import State to Each Interpreter (gh-101941)Eric Snow2023-03-091-5/+8
* gh-102179: Fix `os.dup2` error reporting for negative fds (#102180)Alexey Izbyshev2023-03-041-5/+0
* gh-102336: Remove code specifically for handling Windows 7 (GH-102337)Max Bachmann2023-03-011-84/+28
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-241-3/+2
* gh-102141: replace use of getpid on Windows with GetCurrentProcessId (GH-102142)Max Bachmann2023-02-241-6/+9
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-2/+0
* gh-101857: Allow xattr detection on musl libc (#101858)Sam James2023-02-141-1/+2
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-081-0/+310
* gh-59956: Clarify GILState-related Code (gh-101161)Eric Snow2023-01-191-6/+1
* gh-100649: Update native_thread_id after fork (gh-100650)Gabriele N. Tornetta2023-01-011-0/+4
* gh-100228: Warn from os.fork() if other threads exist. (#100229)Gregory P. Smith2022-12-291-0/+103
* GH-69564: Clarify use of octal format of mode argument in help(os.chmod) (#20...amaajemyfren2022-12-211-2/+10