summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
...
* | 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
* | issue27186: add C version of os.fspath(); patch by Jelle ZijlstraEthan Furman2016-06-041-0/+7
* | issue27182: update fsencode and fsdecode for os.path(); patch by Dusty PhillipsEthan Furman2016-06-041-0/+15
* | issue27186 -- initial docs, tests, and python version of os.fspathEthan Furman2016-06-021-0/+21
* | Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.Serhiy Storchaka2016-04-161-1/+1
|\ \ | |/
| * Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes.Serhiy Storchaka2016-04-161-1/+1
* | Issue #25911: more info on test_os failureVictor Stinner2016-03-261-1/+1
* | Fix test_os.test_symlink(): remove create symlinkVictor Stinner2016-03-251-0/+2
* | changeset: 100749:0b61b2d28a07Victor Stinner2016-03-251-1/+10
* | test_os: Win32ErrorTests now ensures that TESTFN doesn't existVictor Stinner2016-03-251-6/+8
* | test_os: use support.rmtree() to cleanup WalkTestsVictor Stinner2016-03-241-29/+1
* | Enhance and modernize test_osVictor Stinner2016-03-241-77/+76
* | test_os: use @support.requires_linux_versionVictor Stinner2016-03-241-5/+4
* | Fix DeprecationWarning on WindowsVictor Stinner2016-03-241-49/+67
* | Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
|\ \ | |/
| * Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
* | Backed out changeset da020e408c7fSerhiy Storchaka2016-03-081-5/+1
|\ \ | |/
| * Backed out changeset f9e22717722dSerhiy Storchaka2016-03-081-5/+1
| |\
| | * Backed out changeset 19a3e0e664afSerhiy Storchaka2016-03-081-5/+1
* | | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
|\ \ \ | |/ /
| * | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
| |\ \ | | |/
| | * Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
* | | Issue #25994: Added the close() method and the support of the context managerSerhiy Storchaka2016-02-111-0/+52
* | | Issue #25911: Restored support of bytes paths in os.walk() on Windows.Serhiy Storchaka2016-02-081-5/+17
|\ \ \ | |/ /
| * | Issue #25911: Restored support of bytes paths in os.walk() on Windows.Serhiy Storchaka2016-02-081-5/+17
* | | Issue #25860: Fixed test failure caused by inconsistency of os.walk() andSerhiy Storchaka2015-12-221-0/+2
|\ \ \ | |/ /
| * | Issue #25860: Fixed test failure caused by inconsistency of os.walk() andSerhiy Storchaka2015-12-221-0/+2
* | | Issue #25860: os.fwalk() no longer skips remaining directories when error occ...Serhiy Storchaka2015-12-221-11/+20
|\ \ \ | |/ /
| * | Issue #25860: os.fwalk() no longer skips remaining directories when error occ...Serhiy Storchaka2015-12-221-11/+20
* | | Issue #25583: Merge makedirs fix from 3.5Martin Panter2015-11-201-0/+3
|\ \ \ | |/ /
| * | Issue #25583: Merge makedirs fix from 3.4 into 3.5Martin Panter2015-11-201-0/+3
| |\ \ | | |/
| | * Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)Martin Panter2015-11-191-0/+3
* | | Issue #25523: Merge a-to-an corrections from 3.5Martin Panter2015-11-021-1/+1
|\ \ \ | |/ /
| * | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-1/+1
| |\ \ | | |/
| | * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
| * | Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()Victor Stinner2015-10-011-7/+9
* | | Issue #25003: Skip test_os.URandomFDTests on Solaris 11.3 and newerVictor Stinner2015-09-181-7/+9
* | | Merge 3.5 (os.waitpid)Victor Stinner2015-09-151-0/+6
|\ \ \ | |/ /