summaryrefslogtreecommitdiff
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) ...Miss Islington (bot)2019-06-171-0/+9
* bpo-36234: Add more tests to PosixUidGidTests (GH-12234)Miss Islington (bot)2019-03-111-8/+20
* Fix syntax warnings in tests introduced in bpo-35942. (GH-11934)Miss Islington (bot)2019-02-191-12/+4
* bpo-35942: Improve the error message if __fspath__ returns invalid types in p...Miss Islington (bot)2019-02-181-1/+18
* bpo-35994: add sub dir for sub2_tree in os.walk test if symlink is not suppor...Miss Islington (bot)2019-02-141-1/+1
* bpo-29734: nt._getfinalpathname handle leak (GH-740)Miss Islington (bot)2019-02-021-0/+56
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Miss Islington (bot)2018-12-011-0/+23
* bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate()...Miss Islington (bot)2018-10-191-0/+10
* closes bpo-34664: Only check file permission bits of newly created directorie...Miss Islington (bot)2018-09-131-2/+2
* bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)Miss Islington (bot)2018-09-121-0/+16
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Miss Islington (bot)2018-07-311-15/+35
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Miss Islington (bot)2018-03-051-0/+34
* bpo-32964: Reuse a testing implementation of the path protocol in tests. (GH-...Miss Islington (bot)2018-03-021-30/+14
* bpo-29248: Fix os.readlink() on Windows (GH-5577)Miss Islington (bot)2018-02-121-0/+15
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-3/+1
* return the new file descriptor from os.dup2 (closes bpo-32441) (#5041)Benjamin Peterson2017-12-291-10/+6
* bpo-32143: add f_fsid to os.statvfs() (#4571)Giuseppe Scrivano2017-12-141-0/+5
* Fix hardcoded value in test_os.py (#4744)Pablo Galindo2017-12-071-1/+1
* bpo-29180: Skip test_os tests on PermissionError raised by Android (GH-4374)xdegaye2017-11-121-3/+10
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-2/+2
* bpo-31784: Implement PEP 564: add time.time_ns() (#3989)Victor Stinner2017-11-021-0/+17
* fixes bpo-31866: remove code pertaining to AtheOS support (#4115)Benjamin Peterson2017-10-251-12/+2
* bpo-31827: Remove os.stat_float_times() (GH-4061)Victor Stinner2017-10-241-17/+0
* os.test_utime_current(): tolerate 50 ms delta (#3646)Victor Stinner2017-09-181-5/+4
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-79/+75
* Spelling fixes (#2902)Ville Skyttä2017-08-031-7/+7
* bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680)Victor Stinner2017-07-121-0/+1
* bpo-30879: os.listdir() and os.scandir() now emit bytes names when (#2634)Serhiy Storchaka2017-07-111-0/+16
* bpo-30441: Fix bug when modifying os.environ while iterating over it (#2409)Osvaldo Santana Neto2017-07-011-0/+24
* bpo-30746: Port more tests for os.spawnvpe() and os.execve() from 2.7. (#2394)Serhiy Storchaka2017-06-251-9/+36
* bpo-30746: Prohibited the '=' character in environment variable names (#2382)Serhiy Storchaka2017-06-251-0/+49
* bpo-30649: Revert utime delta in test_os (#2176)Victor Stinner2017-06-141-1/+3
* bpo-30649: test_os tolerates 50 ms delta for utime (#2156)Victor Stinner2017-06-131-2/+5
* bpo-30584: Fix test_os fails on non-English Windows (#1980)Denis Osipov2017-06-071-1/+3
* bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)Serhiy Storchaka2017-03-301-1/+30
* bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799)Serhiy Storchaka2017-03-241-0/+12
* bpo-28682: Added support for bytes paths in os.fwalk(). (#489)Serhiy Storchaka2017-03-071-12/+19
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28732: Raise ValueError when argv[0] is emptySteve Dower2016-11-191-2/+16
|\
* | Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of a...Steve Dower2016-11-191-0/+21
* | Issue #26935: Fix broken Android dup2() in test_osXavier de Gaye2016-11-161-2/+7
* | Closes #27781: Removes special cases for the experimental aspect of PEP 529Steve Dower2016-11-061-7/+2
* | Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable.Serhiy Storchaka2016-10-281-10/+15
|\ \ | |/
| * Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable.Serhiy Storchaka2016-10-281-10/+15
| * Issue #28353: Fixed tests of os.fwalk() with broken links.Serhiy Storchaka2016-10-251-3/+18
* | Issue #28353: Try to fix tests.Serhiy Storchaka2016-10-251-2/+13
* | Issue #28353: os.fwalk() no longer fails on broken links.Serhiy Storchaka2016-10-251-2/+18
|\ \ | |/
| * Issue #28353: os.fwalk() no longer fails on broken links.Serhiy Storchaka2016-10-251-5/+21
| * Issue #28075: Fix test_access_denied in Python 3.5Berker Peksag2016-09-181-12/+14
| * Fix test_access_denied in 3.5Berker Peksag2016-09-171-1/+2