summaryrefslogtreecommitdiff
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15202: Consistently use the name "follow_symlinks" forLarry Hastings2012-07-151-7/+8
* Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open.Richard Oudkerk2012-07-061-0/+13
* Issue #15177: Added dir_fd parameter to os.fwalk().Larry Hastings2012-06-251-5/+24
* Closes #15161: add support for giving path as a fd for truncate() and pathcon...Georg Brandl2012-06-241-0/+2
* Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir"Larry Hastings2012-06-231-1/+4
* Issue #14626: Large refactoring of functions / parameters in the os module.Larry Hastings2012-06-221-83/+85
* Issue #14711: os.stat_float_times() has been deprecated.Victor Stinner2012-06-051-2/+6
* Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-24/+744
|\
| * Add two more sorts to test_os.WalkTests I've missed beforeHynek Schlawack2012-05-151-0/+2
| * Sort file list in test_os.WalkTestsHynek Schlawack2012-05-151-0/+1
| * #14773: Fix os.fwalk() failing on dangling symlinksHynek Schlawack2012-05-151-1/+5
| * Issue #14082: shutil.copy2() now copies extended attributes, if possible.Antoine Pitrou2012-05-121-19/+1
| * Issue #14127: Add ns= parameter to utime, futimes, and lutimes.Larry Hastings2012-05-031-14/+72
| * Issue #14127: Add st_{cma}time_ns fields to os.stat() result object.Larry Hastings2012-04-191-0/+7
| * all OSErrors should indicate there are no extended attributes (closes #14358)Benjamin Peterson2012-03-181-3/+1
| * update skip reasonPhilip Jenvey2012-02-291-1/+1
| * also skip test_device_encoding when stdin isn't a ttyPhilip Jenvey2012-02-291-2/+2
| * Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-291-0/+19
| * Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-15/+667
| |\
| | * get_terminal_size() can also fail with ENOTTY if the fd is not connected to a...Antoine Pitrou2012-02-091-2/+9
| | * Relax tests to fix buildbot failureAntoine Pitrou2012-02-081-2/+2
| | * Issue #13609: Add two functions to query the terminal size:Antoine Pitrou2012-02-081-0/+38
| | * Backout f8409b3d6449: the PEP 410 is not accepted yetVictor Stinner2012-02-081-31/+0
| | * PEP 410Victor Stinner2012-02-081-0/+31
| | * Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestampVictor Stinner2012-02-081-0/+11
| | * Issue #13964: Split os.*utime*() subsecond tests into multiple tests to helpVictor Stinner2012-02-081-38/+75
| | * Issue #13964: Test also os.futimesat()Victor Stinner2012-02-081-1/+8
| | * Issue #13964: Write tests for new os.*utime*() functionsVictor Stinner2012-02-081-0/+37
| | * Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), toCharles-François Natali2012-02-061-2/+2
| | * Issue #13734: Add os.fwalk(), a directory walking function yielding fileCharles-François Natali2012-02-051-2/+58
| | * Issue #8828: Add new function os.replace(), for cross-platform renaming with ...Antoine Pitrou2012-01-301-0/+12
| | * Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-2/+7
| | |\
| | * | Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6Charles-François Natali2011-11-261-0/+4
| | * | (Merge 3.2) Issue #13436: Fix unsetenv() test on WindowsVictor Stinner2011-11-221-1/+2
| | |\ \
| | * \ \ (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore.Victor Stinner2011-11-221-0/+9
| | |\ \ \
| | * | | | Issue #13374: Deprecate os.getcwdb() on WindowsVictor Stinner2011-11-161-0/+1
| | * | | | Issue #13374: Skip deprecation tests for os.symlink() on Windows XPVictor Stinner2011-11-161-1/+8
| | * | | | Issue #13374: The Windows bytes API has been deprecated in the os module. UseVictor Stinner2011-11-151-4/+40
| | * | | | Oops. Update a placeholder comment with the issue number.Brian Curtin2011-11-061-1/+1
| | * | | | Fix #13327. Remove the need for an explicit None as the second argument toBrian Curtin2011-11-061-0/+15
| | * | | | Close #13174: Fix extended attributes tests in test_os for SELinuxVictor Stinner2011-10-161-5/+10
| | * | | | expose linux extended file system attributes (closes #12720)Benjamin Peterson2011-08-311-0/+94
| | * | | | test_os needs to reap threadsAntoine Pitrou2011-07-151-0/+1
| | * | | | (merge 3.2) test_os: remove now useless TemporaryFileTests testcaseVictor Stinner2011-07-011-7/+295
| | |\ \ \ \
| | | * \ \ \ (merge 3.2) test_os: add TemporaryFileTests to the testcase listVictor Stinner2011-07-011-0/+1
| | | |\ \ \ \
| | | * | | | | Issue #12451: Add support.create_empty_file()Victor Stinner2011-06-301-2/+1
| | | * | | | | (merge 3.2) Issue #12451: Open files in binary mode in some tests when the textVictor Stinner2011-06-301-7/+6
| | | |\ \ \ \ \
| | | * | | | | | Issue #12400: oops, remove debug code...Victor Stinner2011-06-291-1/+0
| | | * | | | | | (merge 3.2) Issue #12400: regrtest -W doesn't rerun the tests twice anymore,Victor Stinner2011-06-291-5/+295
| | | |\ \ \ \ \ \
| | | | * \ \ \ \ \ Merge from 3.2 for Issue #12084.Brian Curtin2011-06-131-0/+45
| | | | |\ \ \ \ \ \ | | | | |/ / / / / / | | | |/| | | | | |