summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...Saiyang Gou2020-02-131-17/+134
* bpo-39184: Add audit events to command execution functions in os and pty modu...Saiyang Gou2020-02-051-7/+42
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-79/+4
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-241-38/+69
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-221-18/+20
* bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126)Victor Stinner2020-01-221-2/+6
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-221-45/+1
* bpo-39406: Add PY_PUTENV_DICT macro to posixmodule.c (GH-18106)Victor Stinner2020-01-211-15/+37
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-211-1/+43
* bpo-37931: Fix crash on OSX re-initializing os.environ (GH-15428)Benoit Hudson2019-12-061-5/+5
* closes bpo-38803: Fix leak in posixmodule. (GH-17373)Eddie Elizondo2019-11-251-0/+1
* closes bpo-38713: Expose P_PIDFD in os if it's defined. (GH-17071)Benjamin Peterson2019-11-051-0/+6
* bpo-38692: Add os.pidfd_open. (GH-17063)Benjamin Peterson2019-11-051-0/+25
* bpo-35381 Remove all static state from posixmodule (GH-15892)Eddie Elizondo2019-11-051-224/+271
* bpo-38493: Add os.CLD_KILLED and os.CLD_STOPPED. (GH-16821)Dong-hee Na2019-10-211-0/+6
* bpo-38418: Fixes audit event for os.system to be named 'os.system' (GH-16670)Steve Dower2019-10-181-2/+2
* bpo-38378: Rename parameters "out" and "in" of os.sendfile(). (GH-16742)Serhiy Storchaka2019-10-131-11/+10
* closes bpo-36161: Use thread-safe ttyname_r instead of ttyname. (GH-14868)Antonio Gutierrez2019-10-081-4/+15
* bpo-38265: Update os.pread to accept the length type as Py_ssize_t. (GH-16359)Dong-hee Na2019-09-251-4/+3
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-141-7/+5
* bpo-32592: Set Windows 8 as the minimum required version for API support (GH-...Steve Dower2019-09-111-2/+0
* bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)Steve Dower2019-09-111-17/+3
* bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)Jakub Kulík2019-09-111-0/+25
* bpo-36279: Ensure os.wait3() rusage is initialized (GH-15111)Zackery Spytz2019-09-091-0/+6
* bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)Steve Dower2019-09-041-6/+13
* bpo-38020: Fixes crash in os.readlink() on Windows (GH-15663)Steve Dower2019-09-031-2/+2
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-181/+206
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-2/+2
* bpo-37493: use _PyObject_CallNoArg in more places (GH-14575)Jeroen Demeyer2019-07-041-1/+1
* bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424)Victor Stinner2019-06-281-1/+1
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Brandt Bucher2019-06-271-0/+3
* bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...Zackery Spytz2019-06-261-1/+1
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Victor Stinner2019-06-261-59/+64
* bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)Victor Stinner2019-06-251-21/+17
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+9
* bpo-35134: Add Include/cpython/import.h header file (GH-14213)Victor Stinner2019-06-191-0/+1
* bpo-35070: test_getgrouplist may fail on macOS if too many groups (GH-13071)Jeffrey Kintscher2019-06-131-15/+17
* bpo-26826: Expose copy_file_range in the os module (GH-7255)Pablo Galindo2019-05-311-0/+71
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-4/+4
* bpo-26836: Add ifdefs for all MFD_HUGE* constants (GH-13666)Zackery Spytz2019-05-291-0/+28
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-2/+1
* bpo-26836: Add os.memfd_create() (#13567)Zackery Spytz2019-05-291-0/+64
* bpo-37031: Fix PyOS_AfterFork_Child() (GH-13537)Victor Stinner2019-05-241-1/+1
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+22
* bpo-31904: Add posix module support for VxWorks (GH-12118)pxinwr2019-05-211-7/+65
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-4/+15
* bpo-36814: ensure os.posix_spawn() handles None (GH-13144)Anthony Shaw2019-05-101-1/+1
* Suppress clang warning (GH-12384)Rémi Lapeyre2019-05-041-1/+2
* bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)Victor Stinner2019-04-241-3/+4
* bpo-31512: Add non-elevated symlink support for Windows (GH-3652)Vidar Tonaas Fauske2019-04-091-71/+39