summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22181: The availability of the getrandom() is now checked in configure,Victor Stinner2015-03-191-0/+3
* Merge 3.4 (test_os)Victor Stinner2015-03-121-37/+70
|\
| * Issue #23605: Refactor os.walk() tests to also run them on os.fwalk()Victor Stinner2015-03-121-37/+70
| * Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),Victor Stinner2014-12-211-0/+7
* | Suppress assert dialogs in test_osSteve Dower2015-03-081-10/+14
* | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()Victor Stinner2015-03-081-0/+224
* | Issue #20069: Fixed test_os on Solaris: error message is platform depended.Serhiy Storchaka2015-02-161-1/+1
* | #20069: Add tests for os.chown.R David Murray2014-12-251-51/+74
* | Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),Victor Stinner2014-12-211-0/+7
* | Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-8/+14
|\ \ | |/
| * Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-8/+14
* | os: Include posix functions in os.__all__. Closes issue #18554.Yury Selivanov2014-09-261-0/+8
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-0/+26
* | Issue #21932: Skip test_os.test_large_read() on 32-bit systemVictor Stinner2014-07-121-2/+6
* | Issue #21932: Ooops, os.read(fd, size) allocates a buffer of size bytes, evenVictor Stinner2014-07-111-2/+3
* | Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead ofVictor Stinner2014-07-111-0/+19
* | Issue #21741: Add st_file_attributes to os.stat_result on Windows.Zachary Ware2014-06-191-0/+22
* | Issue18314 Allow unlink to remove junctions. Includes support for creating ju...Tim Golden2014-05-051-0/+36
* | Backed out changeset: 17df50df62c7Tim Golden2014-04-271-36/+0
* | Issue #18314 os.unlink will now remove junction points on Windows. Patch by K...Tim Golden2014-04-271-0/+36
|/
* Issue #21207: Detect when the os.urandom cached fd has been closed or replace...Antoine Pitrou2014-04-261-0/+43
* merge 3.3 (#21082)Benjamin Peterson2014-04-011-4/+3
|\
| * 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