summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-33001: Prevent buffer overrun in os.symlink (GH-5989) (GH-5990)Steve Dower2018-03-051-0/+35
* [3.6] bpo-32964: Reuse a testing implementation of the path protocol in tests...Serhiy Storchaka2018-03-031-30/+14
* bpo-29248: Fix os.readlink() on Windows (GH-5577)Miss Islington (bot)2018-02-121-0/+15
* bpo-30908: Fix dangling thread in test_os.TestSendfile (#2680) (#2844)Victor Stinner2017-07-241-0/+1
* [3.6] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-...Serhiy Storchaka2017-07-111-0/+16
* [3.6] bpo-30441: Fix bug when modifying os.environ while iterating over it (G...Serhiy Storchaka2017-07-041-0/+24
* [3.6] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-251-0/+76
* [3.6] bpo-30649: test_os tolerates 50 ms delta for utime (#2156) (#2175)Victor Stinner2017-06-141-1/+6
* [3.6] bpo-30584: Fix test_os fails on non-English Windows (GH-1980) (#1999)Denis Osipov2017-06-081-1/+3
* Issue #28732: Raise ValueError when argv[0] is emptySteve Dower2016-11-201-2/+16
|\
* | Issue #28732: Raise ValueError when os.spawn*() is passed an empty tuple of a...Steve Dower2016-11-201-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-071-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
* | Issue #28075: Merge from 3.5Berker Peksag2016-09-171-0/+19
|\ \ | |/
| * Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.s...Berker Peksag2016-09-171-0/+19
| * Correct spelling in documentation and code commentMartin Panter2016-09-101-1/+1
* | Use requires_os_func() to skip SpawnTestsBerker Peksag2016-09-151-10/+14
* | Make SpawnTest.create_args() keyword-onlyBerker Peksag2016-09-151-5/+5
* | Issue #28114: Fix a crash in parse_envlist() when env contains byte stringsBerker Peksag2016-09-151-2/+15
* | Issue #28114: Add unit tests on os.spawn*()Victor Stinner2016-09-141-0/+86
* | Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-311-1/+1
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-1/+1
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-91/+22
* | Fix test_os.GetRandomTests()Victor Stinner2016-09-071-0/+12
* | Add os.getrandom()Victor Stinner2016-09-061-0/+32
* | Issue #26027: Support path-like objects in PyUnicode-FSConverter().Brett Cannon2016-09-061-36/+28
* | os.access does not allow a fdBenjamin Peterson2016-09-051-1/+1
* | Issue #26027: Fix test_path_t_converter on WindowsBerker Peksag2016-08-271-1/+1
* | Don't test for path-like bytes paths on WindowsBrett Cannon2016-08-271-2/+7
* | Issue #26027: Don't test for bytearray in path_t as that's nowBrett Cannon2016-08-271-7/+2
* | Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-3/+80
* | Issue #26800: Undocumented support of general bytes-like objectsSerhiy Storchaka2016-08-061-1/+8
* | Issue #27472: Add test.support.unix_shell as the path to the default shell.Xavier de Gaye2016-07-221-5/+8
* | Fix a failing test introduced as part of issue #27512Brett Cannon2016-07-151-2/+1
* | Issue #27512: Don't segfault when os.fspath() calls an object whoseBrett Cannon2016-07-151-7/+17
* | Issue #27038: Expose DirEntry as os.DirEntry.Brett Cannon2016-06-241-0/+1
* | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-241-29/+33
* | Issue #27186: Skip scandir(bytes) test with os.name == "nt"Martin Panter2016-06-131-1/+1
* | Issue #27186: skip bytes path test for os.scandir() on WindowsBrett Cannon2016-06-121-0/+1
* | Issue #27186: Add os.PathLike support to DirEntryBrett Cannon2016-06-101-4/+19
* | issue27186: fix fsencode/fsdecode and update tests; patch by Jelle ZijlstraEthan Furman2016-06-041-6/+13
* | issue27186: add PathLike ABCEthan Furman2016-06-041-0/+2