summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
...
| * merge 3.2 (#21082)Benjamin Peterson2014-04-011-4/+3
| |\
| | * remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-011-4/+3
| | * Issue #16218, #16414, #16444: Backport FS_NONASCII, TESTFN_UNDECODABLE,Victor Stinner2013-01-031-0/+4
* | | (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSErrorVictor Stinner2014-01-081-0/+9
|\ \ \ | |/ /
| * | Issue #20113: os.readv() and os.writev() now raise an OSError exception onVictor Stinner2014-01-081-0/+9
* | | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-1/+1
|\ \ \ | |/ /
| * | Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-2/+2
| * | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-246/+233
* | | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-245/+248
* | | Correct whitespace in test_osTim Golden2013-10-251-1/+1
* | | Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santos...Tim Golden2013-10-251-0/+47
* | | test_os: report tests as skipped when os.statvfs() fails with ENOSYSVictor Stinner2013-10-111-2/+3
* | | Issue #19209: Remove import of copyreg from the os module to speed upChristian Heimes2013-10-111-0/+22
* | | Issue #18904: test_os and test_socket use unittest.skipIf() to check if fcntlVictor Stinner2013-09-081-22/+23
* | | Issue #18904: Improve os.get/set_inheritable() testsVictor Stinner2013-09-081-7/+29
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-0/+67
* | | Issue #18756: make test_urandom_failure more robust by executing its code in ...Antoine Pitrou2013-08-241-10/+19
|\ \ \ | |/ /
| * | Issue #18756: make test_urandom_failure more robust by executing its code in ...Antoine Pitrou2013-08-241-10/+19
* | | (Merge 3.3) Close #17702: On error, os.environb now removes suppress the exceptVictor Stinner2013-08-231-0/+3
|\ \ \ | |/ /
| * | Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-0/+3
* | | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-0/+20
|\ \ \ | |/ /
| * | Issue #18756: Improve error reporting in os.urandom() when the failure is due...Antoine Pitrou2013-08-161-0/+20
* | | (Merge 3.3) Issue #18296: Try to fix TestSendfile.test_trailers() of test_os ...Victor Stinner2013-08-151-4/+5
|\ \ \ | |/ /
| * | Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSDVictor Stinner2013-08-151-4/+5
* | | Issue #15301: skip new test method so Windows builtbots stop failing.Terry Jan Reedy2013-08-111-0/+1
* | | Issue #15301: Parsing fd, uid, and gid parameters for builtinsLarry Hastings2013-08-081-0/+12
* | | Merge with 3.3Jason R. Coombs2013-05-281-1/+1
|\ \ \ | |/ /
| * | Use simple call to os.symlink for broken link (intended for previous commit)Jason R. Coombs2013-05-281-1/+1
* | | Merge with 3.3Jason R. Coombs2013-05-281-8/+36
|\ \ \ | |/ /
| * | Issue #13772: Restored directory detection of targets in `os.symlink` on Wind...Jason R. Coombs2013-05-281-8/+36
* | | Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on anCharles-Francois Natali2013-05-201-0/+10
* | | (Merge 3.3) Issue #17702: use assertRaises() for the unit testVictor Stinner2013-04-141-10/+4
|\ \ \ | |/ /
| * | Issue #17702: use assertRaises() for the unit testVictor Stinner2013-04-141-10/+4
* | | (Merge 3.3) Close #17702: os.environ now raises KeyError with the originalVictor Stinner2013-04-141-0/+18
|\ \ \ | |/ /
| * | Close #17702: os.environ now raises KeyError with the original environmentVictor Stinner2013-04-141-0/+18
* | | Merge 3.3.Stefan Krah2013-01-171-3/+6
|\ \ \ | |/ /
| * | Issue #14110: Fix test failures on FreeBSD if the user is in the wheel group.Stefan Krah2013-01-171-3/+6
* | | (Merge 3.3) Issue #9644: Add a test on os.statvfs() for the PEP 383Victor Stinner2013-01-011-0/+9
|\ \ \ | |/ /
| * | Issue #9644: Add a test on os.statvfs() for the PEP 383Victor Stinner2013-01-011-0/+9
| |\ \ | | |/
| | * Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encodingVictor Stinner2013-01-011-0/+9
* | | Add test coverage for os.removedirs (#16775)Andrew Svetlov2012-12-251-0/+46
|\ \ \ | |/ /
| * | Add test coverage for os.removedirs (#16775)Andrew Svetlov2012-12-251-0/+46
| |\ \ | | |/
| | * Add test coverage for os.removedirs (#16775)Andrew Svetlov2012-12-251-0/+46
* | | Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-6/+6
* | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-9/+9
* | | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-8/+8
|\ \ \ | |/ /
| * | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-8/+8
| |\ \ | | |/
| | * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-8/+8
| * | Issue #16218, #16444: Backport improvment on tests for non-ASCII charactersVictor Stinner2012-11-121-0/+4
* | | Issue #15478: os.lchflags() is not always available when os.chflags() is avai...Victor Stinner2012-11-131-4/+3