index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
posixmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.8] bpo-42237: Fix os.sendfile() on illumos (GH-23154). (GH-23246)
Jakub Stasiak
2020-11-12
1
-0/+18
*
bpo-40653: Move _dirnameW out of GH-ifdef HAVE_SYMLINK/GH-endif (GH-20144)
Miss Islington (bot)
2020-05-18
1
-2/+6
*
bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19654)
Victor Stinner
2020-04-22
1
-1/+3
*
bpo-40014: Fix os.getgrouplist() (GH-19126)
Miss Islington (bot)
2020-03-24
1
-22/+25
*
bpo-40014: Fix os.getgrouplist() on macOS (GH-19118)
Miss Islington (bot)
2020-03-23
1
-0/+19
*
bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...
Steve Dower
2020-02-13
1
-17/+128
*
bpo-39184: Add audit events to command execution functions in os and pty modu...
Miss Islington (bot)
2020-02-05
1
-7/+42
*
bpo-37931: Fix crash on OSX re-initializing os.environ (GH-15428)
Miss Islington (bot)
2019-12-06
1
-5/+5
*
bpo-38418: Fixes audit event for os.system to be named 'os.system' (GH-16670)
Miss Islington (bot)
2019-10-18
1
-2/+2
*
[3.8] bpo-37206: Unrepresentable default values no longer represented as None...
Serhiy Storchaka
2019-09-14
1
-7/+5
*
bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)
Miss Islington (bot)
2019-09-12
1
-0/+25
*
bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)
Miss Islington (bot)
2019-09-11
1
-17/+3
*
bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)
Miss Islington (bot)
2019-09-04
1
-6/+13
*
bpo-38020: Fixes crash in os.readlink() on Windows (GH-15663)
Miss Islington (bot)
2019-09-03
1
-2/+2
*
bpo-37834: Normalise handling of reparse points on Windows (GH-15370)
Steve Dower
2019-08-21
1
-181/+206
*
bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424) (GH-14451)
Miss Islington (bot)
2019-06-28
1
-1/+1
*
closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...
Miss Islington (bot)
2019-06-27
1
-0/+3
*
bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...
Miss Islington (bot)
2019-06-26
1
-1/+1
*
bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)
Miss Islington (bot)
2019-06-26
1
-59/+64
*
bpo-37363: Add audit events for a range of modules (GH-14301)
Miss Islington (bot)
2019-06-24
1
-0/+9
*
bpo-35070: test_getgrouplist may fail on macOS if too many groups (GH-13071)
Miss Islington (bot)
2019-06-13
1
-15/+17
*
bpo-26826: Expose copy_file_range in the os module (GH-7255)
Pablo Galindo
2019-05-31
1
-0/+71
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-4/+4
*
bpo-26836: Add ifdefs for all MFD_HUGE* constants (GH-13666)
Zackery Spytz
2019-05-29
1
-0/+28
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
1
-2/+1
*
bpo-26836: Add os.memfd_create() (#13567)
Zackery Spytz
2019-05-29
1
-0/+64
*
bpo-37031: Fix PyOS_AfterFork_Child() (GH-13537)
Victor Stinner
2019-05-24
1
-1/+1
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+22
*
bpo-31904: Add posix module support for VxWorks (GH-12118)
pxinwr
2019-05-21
1
-7/+65
*
bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)
Victor Stinner
2019-05-13
1
-4/+15
*
bpo-36814: ensure os.posix_spawn() handles None (GH-13144)
Anthony Shaw
2019-05-10
1
-1/+1
*
Suppress clang warning (GH-12384)
Rémi Lapeyre
2019-05-03
1
-1/+2
*
bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)
Victor Stinner
2019-04-24
1
-3/+4
*
bpo-31512: Add non-elevated symlink support for Windows (GH-3652)
Vidar Tonaas Fauske
2019-04-09
1
-71/+39
*
bpo-36085: Enable better DLL resolution on Windows (GH-12302)
Steve Dower
2019-03-29
1
-4/+129
*
bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)
Eric Snow
2019-03-09
1
-0/+1
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-0/+3
*
bpo-35942: Improve the error message if __fspath__ returns invalid types in p...
Pablo Galindo
2019-02-18
1
-8/+15
*
Remove stray quote in os.replace docstring. (GH-11556)
Anthony Sottile
2019-02-13
1
-2/+2
*
bpo-29734: nt._getfinalpathname handle leak (GH-740)
Mark Becwar
2019-02-02
1
-8/+10
*
bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...
Tony Roberts
2019-02-02
1
-3/+8
*
bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719)
Victor Stinner
2019-02-01
1
-11/+13
*
bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...
Joannah Nanjekye
2019-02-01
1
-13/+31
*
bpo-35674: Add os.posix_spawnp() (GH-11554)
Joannah Nanjekye
2019-01-16
1
-34/+101
*
bpo-35214: Annotate posix calls for clang MSan. (#11389)
Gregory P. Smith
2018-12-31
1
-0/+16
*
bpo-35550: Fix incorrect Solaris define guards (GH-11275)
Jakub Kulík
2018-12-31
1
-1/+1
*
bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152)
Serhiy Storchaka
2018-12-17
1
-6/+7
*
bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...
Serhiy Storchaka
2018-12-14
1
-4/+5
*
bpo-35445: Do not ignore memory errors when create posix.environ. (GH-11049)
Serhiy Storchaka
2018-12-10
1
-37/+27
*
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...
Zackery Spytz
2018-12-07
1
-4/+2
[next]