summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-113119: Fix the macOS framework installer build (#113268)Gregory P. Smith2023-12-191-1/+10
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-0/+24
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-6/+10
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-141-18/+65
* gh-112730: Use color to highlight error locations (gh-112732)Pablo Galindo Salgado2023-12-061-0/+22
* gh-112567: Add _Py_GetTicksPerSecond() function (#112587)Victor Stinner2023-12-011-25/+28
* gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...Serhiy Storchaka2023-11-101-1/+6
* GH-111804: Drop posix.fallocate() under WASI (GH-111869)Brett Cannon2023-11-091-2/+5
* gh-90026: support XATTRs on Cygwin (GH-105075)Philippe Cerfon2023-11-031-3/+9
* GH-111293: Fix DirEntry.inode dropping higher bits on Windows (GH-111294)zcxsythenew2023-10-261-3/+3
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-201-5/+5
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-2/+6
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-071-0/+248
* gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298)박문식2023-10-051-0/+32
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-31/+42
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-5/+4
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-291-8/+0
* gh-109782: Ensure `os.path.isdir` has the same signature on all platforms (GH...Amin Alaee2023-09-281-5/+5
* gh-109613: _pystat_fromstructstat() checks for exceptions (#109618)Victor Stinner2023-09-211-49/+72
* gh-109033: Return filename with os.utime errors (#109034)Ronan Pigott2023-09-191-7/+2
* gh-108717: Speedup `os.DirEntry.is_junction` function (#108718)Nikita Sobolev2023-09-061-4/+2
* gh-108765: Python.h no longer includes <sys/time.h> (#108775)Victor Stinner2023-09-021-0/+4
* gh-108765: Python.h no longer includes <unistd.h> (#108783)Victor Stinner2023-09-021-1/+1
* gh-108765: Remove old prototypes from pyport.h (#108782)Victor Stinner2023-09-021-0/+7
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-261-43/+85
* gh-106320: Remove private AC converter functions (#108505)Victor Stinner2023-08-261-0/+1
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-3/+3
* gh-107801: Improve the accuracy of os.lseek docs (#107935)Erlend E. Aasland2023-08-181-4/+9
* gh-106242: Fix path truncation in os.path.normpath (GH-106816)Finn Womack2023-08-151-1/+3
* gh-106881: Check for linux/limits.h before including it (#107397)justdan62023-07-281-1/+1
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-3/+3
* Docs: fix typo in os.pwrite docstring (#107087)Jérôme Carretero2023-07-231-2/+2
* gh-86493: Fix possible leaks in some modules initialization (GH-106768)Serhiy Storchaka2023-07-181-8/+4
* gh-86493: Fix possible leaks in modules initialization: _curses_panel, _decim...Serhiy Storchaka2023-07-181-37/+22
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-0/+1
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-2/+0
* gh-106046: Improve error message from `os.fspath` if `__fspath__` is set to `...Alex Waygood2023-06-251-2/+2
* gh-105375: Improve posix error handling (#105592)Erlend E. Aasland2023-06-091-4/+8
* gh-104690 Disallow thread creation and fork at interpreter finalization (#104...chgnrdv2023-06-041-2/+19
* gh-105156: Argument Clinic avoids Py_UNICODE type (#105161)Victor Stinner2023-05-311-4/+4
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Steve Dower2023-05-291-0/+90
* gh-104820: Fixes os.stat on Windows to better handle file systems that do not...Steve Dower2023-05-241-4/+8
* Fix missing/incomplete NULL checks in multiple source files (#104564)chgnrdv2023-05-231-0/+4
* 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