summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.11] bpo-11102: Make configure enable major(), makedev(), and minor() on HP...Miss Islington (bot)2023-12-281-4/+5
* [3.11] gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Wind...Miss Islington (bot)2023-11-111-1/+6
* [3.11] GH-111804: Drop posix.fallocate() under WASI (GH-111869) (GH-111920)Brett Cannon2023-11-091-2/+5
* [3.11] gh-109613: _pystat_fromstructstat() checks for exceptions (#109618) (#...Victor Stinner2023-09-211-46/+67
* [3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...Serhiy Storchaka2023-08-271-45/+85
* [3.11] gh-107801: Improve the accuracy of os.lseek docs (#107935) (#108137)Erlend E. Aasland2023-08-191-4/+9
* [3.11] gh-106242: Fix path truncation in os.path.normpath (GH-106816) (#107982)Steve Dower2023-08-151-1/+3
* [3.11] gh-106881: Check for linux/limits.h before including it (#107397) (#10...justdan62023-07-281-1/+1
* [3.11] gh-86493: Fix possible leaks in some modules initialization (GH-106768...Serhiy Storchaka2023-07-191-8/+4
* [3.11] gh-86493: Fix possible leaks in modules initialization: _curses_panel,...Serhiy Storchaka2023-07-181-45/+22
* [3.11] gh-105375: Improve posix error handling (GH-105592) (#105597)Miss Islington (bot)2023-06-091-4/+8
* [3.11] gh-101857: Allow xattr detection on musl libc (GH-101858) (#101894)Miss Islington (bot)2023-05-211-1/+2
* [3.11] gh-104106: Add gcc fallback of mkfifoat/mknodat for macOS (gh-104129) ...Dong-hee Na2023-05-051-0/+8
* gh-102179: Fix `os.dup2` error reporting for negative fds (GH-102180)Miss Islington (bot)2023-03-041-5/+0
* gh-100649: Update native_thread_id after fork (gh-100650)Miss Islington (bot)2023-01-011-0/+4
* GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (GH...Miss Islington (bot)2022-11-261-11/+3
* [3.11] gh-99337: Fix compile errors with gcc 12 on macOS (GH-99470) (#99638)Miss Islington (bot)2022-11-211-4/+16
* [3.11] gh-96288: Add a sentence to `os.mkdir`'s docstring. (GH-96271). (#98065)Jelle Zijlstra2022-10-081-2/+3
* fixes gh-96078: os.sched_yield release the GIL while calling sched_yield(2). ...Miss Islington (bot)2022-10-071-1/+6
* [3.11] gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (...Miss Islington (bot)2022-10-061-8/+52
* [3.11] gh-95174: Handle missing dup() and constants in WASI (GH-95229) (GH-95...Christian Heimes2022-07-311-1/+4
* [3.11] GH-93899: fix checks for eventfd flags (GH-95170). (#95342)Kumar Aditya2022-07-281-3/+7
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534) (GH-93550)Miss Islington (bot)2022-06-061-0/+4
* bpo-41818: Add os.login_tty() for *nix. (#29658)Soumendra Ganguly2022-05-051-9/+60
* gh-90887: posix module: Add more flags for fcopy_file (#31300)David CARLIER2022-05-031-0/+3
* bpo-46785: Fix race condition between os.stat() and unlink on Windows (GH-31858)Itai Steinherz2022-05-021-1/+11
* gh-64783: Fix signal.NSIG value on FreeBSD (#91929)Victor Stinner2022-04-251-2/+4
* gh-90623: signal.raise_signal() calls PyErr_CheckSignals() (#91756)Victor Stinner2022-04-211-1/+10
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-201-4/+8
* bpo-46968: Add os.sysconf_names['SC_MINSIGSTKSZ'] (GH-31824)Victor Stinner2022-03-111-0/+3
* bpo-46606: os.getgroups() doesn't overallocate (GH-31569)Victor Stinner2022-02-261-32/+25
* bpo-46606: Remove redundant +1. (GH-31561)Inada Naoki2022-02-251-1/+1
* bpo-46606: Reduce stack usage of getgroups and setgroups (GH-31073)Inada Naoki2022-02-221-56/+23
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-6/+5
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-2/+2
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-2/+43
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-131-0/+9
* bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)David CARLIER2022-01-031-0/+4
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-121-1/+1
* bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)Eric Snow2021-12-081-2/+2
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-0/+28
* bpo-40280: Move hard-coded feature checks to configure (GH-29789)Christian Heimes2021-11-261-20/+0
* bpo-41498: Fix build on platforms without sigset_t (GH-29770)Christian Heimes2021-11-251-0/+8
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-131-1/+2
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-131-13/+11
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-1/+2
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-3/+3
* Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)Serhiy Storchaka2021-09-191-1/+1
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Vincent Michel2021-09-091-0/+2
* bpo-45012: Release GIL around stat in os.scandir (GH-28085)Stanisław Skonieczny2021-09-071-2/+8