summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ...Steve Dower2018-03-081-22/+32
* [3.6] bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) (GH-5990)Steve Dower2018-03-051-28/+38
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5946)Miss Islington (bot)2018-03-011-7/+7
* closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708)Miss Islington (bot)2018-02-211-1/+1
* Update comment in posixmodule.c (GH-5681)Miss Islington (bot)2018-02-141-1/+1
* bpo-29248: Fix os.readlink() on Windows (GH-5577)Miss Islington (bot)2018-02-121-3/+3
* bpo-31106: Fix handling of erros in posix_fallocate() and posix_fadvise() (GH...Miss Islington (bot)2018-02-011-10/+20
* bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (GH-47...Miss Islington (bot)2017-12-141-0/+1
* [3.6] bpo-31343: Include sys/sysmacros.h (GH-3318) (#3344)Christian Heimes2017-09-051-0/+5
* bpo-30581: Windows: os.cpu_count() returns wrong number of processors (#2934)...Christopher Wilcox2017-09-011-3/+16
* bpo-29619: Do not use HAVE_LARGEFILE_SUPPORT for type conversions (GH-1666) (...Victor Stinner2017-08-171-18/+5
* [3.6] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-...Serhiy Storchaka2017-07-111-3/+5
* bpo-30602: Fix refleak in os.spawnv() (#2212) (#2486)Victor Stinner2017-06-291-1/+1
* [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302)...Serhiy Storchaka2017-06-281-6/+12
* [3.6] bpo-30769: Fix reference leak introduced in 77703942c59 (GH-2416) (#2425)Emily Morehouse2017-06-271-0/+4
* [3.6] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-251-4/+28
* bpo-30602: Fix lastarg in os.spawnve() (#2287) (#2357)Victor Stinner2017-06-231-1/+1
* [3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2...Serhiy Storchaka2017-06-151-1/+1
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096...Serhiy Storchaka2017-04-191-18/+42
* bpo-29619: Convert st_ino using unsigned integer (#557) (#584)Victor Stinner2017-03-091-5/+8
* Issue #29513: Fixed a reference leak in os.scandir() added in issue #29034.Serhiy Storchaka2017-02-091-7/+0
* Issue #29092: Sync os.stat's doc and docstring on path type.Xiang Zhang2017-01-221-2/+3
|\
* | Issue #29034: Fix memory leak and use-after-free in path_converter.Xiang Zhang2017-01-081-53/+56
* | Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* | Issue #28732: Raise ValueError when argv[0] is emptySteve Dower2016-11-201-0/+34
|\ \ | |/
| * Issue #28732: Raise ValueError when argv[0] is empty.Steve Dower2016-11-201-0/+9
* | Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of a...Steve Dower2016-11-201-0/+10
* | Merge from 3.5 and fix a few other functions missing IPH handling.Steve Dower2016-11-201-2/+7
|\ \ | |/
| * Issue #28732: Fix crash in os.spawnv() with no elements in argsSteve Dower2016-11-201-0/+16
* | Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-081-4/+2
|\ \ | |/
| * Issue #28585: Restored docstring of os._isdir().Serhiy Storchaka2016-11-081-4/+2
* | Issue #28394: More typo fixes for 3.6+Martin Panter2016-10-101-1/+1
* | Issue #27998: Fixed bytes path support in os.scandir() on Windows.Serhiy Storchaka2016-10-081-46/+43
* | Increase buffer for readlink() in case OS will support longer names one day.Christian Heimes2016-09-231-3/+4
|\ \ | |/
| * Increase buffer for readlink() in case OS will support longer names one day.Christian Heimes2016-09-231-3/+4
| * Issue #28075: Fix test_access_denied in Python 3.5Berker Peksag2016-09-181-2/+4
* | Fix memleak in os.getrandom()Victor Stinner2016-09-201-10/+18
* | Fix memory leak in path_converter()Victor Stinner2016-09-191-1/+1
* | Issue #28075: Merge from 3.5Berker Peksag2016-09-171-2/+4
|\ \ | |/
| * Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.s...Berker Peksag2016-09-171-2/+4
* | Issue #28156: Export os.getpid() conditionallyBerker Peksag2016-09-151-0/+2
* | Issue #28114: Fix a crash in parse_envlist() when env contains byte stringsBerker Peksag2016-09-151-17/+39
* | Adds missing assert suppression.Steve Dower2016-09-121-0/+4
* | Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENATSteve Dower2016-09-091-2/+3
* | use Py_MAXBenjamin Peterson2016-09-081-1/+1
* | Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-72/+3
* | Fix mismatched if blocks in posixmodule.c.Steve Dower2016-09-081-2/+1
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-640/+285
* | more linux -> __linux__Benjamin Peterson2016-09-071-1/+1
* | os.urandom() now blocks on LinuxVictor Stinner2016-09-061-2/+1