summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35214: Annotate posix calls for clang MSan. (#11389)Gregory P. Smith2018-12-311-0/+16
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Jakub Kulík2018-12-311-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-10-311-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-021-4/+6
* bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372)Joe Pamer2018-09-251-2/+27
* bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ...Serhiy Storchaka2018-09-181-4/+14
* Convert os.readlink() to Argument Clinic. (GH-8778)Serhiy Storchaka2018-09-171-83/+71
* bpo-34651: Only allow the main interpreter to fork. (gh-9279)Eric Snow2018-09-141-0/+14
* bpo-34674: Assume unistd.h exists on Unix. (GH-9290)Benjamin Peterson2018-09-141-35/+0
* bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)Oren Milman2018-09-121-0/+6
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-121-2/+2
* bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725)Serhiy Storchaka2018-09-081-4/+5
* bpo-20104: Add flag capabilities to posix_spawn (GH-6693)Pablo Galindo2018-09-071-4/+136
* bpo-34384: Fix os.readlink() on Windows (GH-8740)Berker Peksag2018-08-151-59/+34
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-031-4/+4
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Serhiy Storchaka2018-07-311-17/+20
* bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#...Giampaolo Rodola2018-06-191-2/+2
* bpo-33630: Fix using of freed memory in old versions of glicb for posix_spawn...Pablo Galindo2018-06-191-3/+22
* bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...Giampaolo Rodola2018-06-121-0/+37
* Remove unneeded PyErr_Occurred() check in os_lseek_impl() (GH-7557)Zackery Spytz2018-06-101-3/+0
* bpo-33441: Make the sigset_t converter available in other modules. (GH-6720)Serhiy Storchaka2018-05-081-0/+59
* bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(...Serhiy Storchaka2018-05-011-122/+123
* bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ...Alexey Izbyshev2018-03-081-42/+32
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Steve Dower2018-03-051-28/+38
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)Alexey Izbyshev2018-03-011-7/+7
* bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage n...Steve Dower2018-02-221-33/+48
* closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708)Alexey Izbyshev2018-02-201-1/+1
* Update comment in posixmodule.c (GH-5681)ngie-eign2018-02-141-1/+1
* bpo-29248: Fix os.readlink() on Windows (GH-5577)SSE42018-02-121-3/+3
* bpo-32747: Remove trailing spaces in docstrings. (GH-5491)oldk2018-02-021-1/+1
* bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (...Stéphane Wirtel2018-01-301-1/+1
* bpo-20104: Fix leaks and errors in new os.posix_spawn (GH-5418)Pablo Galindo2018-01-291-52/+66
* bpo-32705: Current Android does not have posix_spawn (#5413)Chih-Hsuan Yen2018-01-291-0/+7
* bpo-20104: Expose `posix_spawn` in the os module (GH-5109)Pablo Galindo2018-01-291-1/+201
* bpo-32659: Solaris "stat" should support "st_fstype" (#5307)jcea2018-01-281-0/+17
* bpo-31368: Expose preadv and pwritev in the os module (#5239)Pablo Galindo2018-01-271-0/+194
* bpo-32390: Fix compilation failure on AIX after f_fsid was added to os.statvf...Michael Felt2018-01-051-0/+6
* return the new file descriptor from os.dup2 (closes bpo-32441) (#5041)Benjamin Peterson2017-12-291-16/+27
* bpo-26439 Fix ctypes.util.find_library failure on AIX (#4507)Michael Felt2017-12-191-0/+3