summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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
* gh-81057: Fix a Reference Leak in the posix Module (gh-100140)Eric Snow2022-12-091-0/+1
* gh-81057: Move time Globals to _PyRuntimeState (gh-100122)Eric Snow2022-12-081-25/+5
* gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)Eric Snow2022-12-081-16/+38
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-031-8/+8
* GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (#9...TheShermanTanker2022-11-261-11/+3
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-231-8/+4
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+20
* gh-99537: Use Py_SETREF() function in C code (#99656)Victor Stinner2022-11-221-2/+1
* gh-99337: Fix compile errors with gcc 12 on macOS (#99470)Ronald Oussoren2022-11-211-4/+16
* gh-99300: Use Py_NewRef() in Modules/ directory (#99469)Victor Stinner2022-11-141-39/+21
* gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)Eric Snow2022-10-311-0/+14
* gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...Eric Snow2022-10-261-1/+1
* gh-95023: Added os.setns and os.unshare functions (#95046)Noam Cohen2022-10-201-0/+107
* gh-98393: os module reject bytes-like, only accept bytes (#98394)Victor Stinner2022-10-181-27/+5
* gh-96288: Add a sentence to `os.mkdir`'s docstring. (#96271)Hagai Helman Tov2022-10-071-2/+3
* fixes gh-96078: os.sched_yield release the GIL while calling sched_yield(2). ...Dong-hee Na2022-10-061-1/+6
* gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (GH-97944)Ned Deily2022-10-061-8/+52
* gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)Pablo Galindo Salgado2022-08-301-0/+5
* gh-43414: os.get_terminal_size() now uses the actual file descriptor on Windo...Raghunandan Bhat2022-07-281-15/+2
* GH-93899: fix checks for eventfd flags (GH-95170)Kumar Aditya2022-07-271-3/+7
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-261-1/+4