summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)Miss Islington (bot)2019-09-121-0/+25
* bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)Miss Islington (bot)2019-09-111-17/+3
* bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)Miss Islington (bot)2019-09-041-6/+13
* bpo-38020: Fixes crash in os.readlink() on Windows (GH-15663)Miss Islington (bot)2019-09-031-2/+2
* bpo-37834: Normalise handling of reparse points on Windows (GH-15370)Steve Dower2019-08-211-181/+206
* bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424) (GH-14451)Miss Islington (bot)2019-06-281-1/+1
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Miss Islington (bot)2019-06-271-0/+3
* bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...Miss Islington (bot)2019-06-261-1/+1
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Miss Islington (bot)2019-06-261-59/+64
* bpo-37363: Add audit events for a range of modules (GH-14301)Miss Islington (bot)2019-06-241-0/+9
* bpo-35070: test_getgrouplist may fail on macOS if too many groups (GH-13071)Miss Islington (bot)2019-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
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-291-4/+129
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-081-0/+1
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-0/+3
* bpo-35942: Improve the error message if __fspath__ returns invalid types in p...Pablo Galindo2019-02-181-8/+15
* Remove stray quote in os.replace docstring. (GH-11556)Anthony Sottile2019-02-121-2/+2
* bpo-29734: nt._getfinalpathname handle leak (GH-740)Mark Becwar2019-02-021-8/+10
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-3/+8
* bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719)Victor Stinner2019-02-011-11/+13
* bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH...Joannah Nanjekye2019-02-011-13/+31
* bpo-35674: Add os.posix_spawnp() (GH-11554)Joannah Nanjekye2019-01-161-34/+101
* bpo-35214: Annotate posix calls for clang MSan. (#11389)Gregory P. Smith2018-12-301-0/+16
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Jakub Kulík2018-12-301-1/+1
* bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152)Serhiy Storchaka2018-12-171-6/+7
* bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...Serhiy Storchaka2018-12-141-4/+5
* bpo-35445: Do not ignore memory errors when create posix.environ. (GH-11049)Serhiy Storchaka2018-12-101-37/+27
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-4/+2
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Serhiy Storchaka2018-12-011-22/+15
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-271-1/+1
* bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657)Victor Stinner2018-11-221-5/+1
* bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (G...Eddie Elizondo2018-11-131-41/+53
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-29341: Clarify that path-like objects are accepted in some os methods (GH...BNMetrics2018-11-021-20/+20
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-11-011-1/+1
* bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate()...Alexey Izbyshev2018-10-201-3/+15
* closes bpo-34862: Guard definition of convert_sched_param with POSIX_SPAWN_SE...William Orr2018-10-011-4/+6
* bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)Joe Pamer2018-09-251-2/+27