| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #18756: Improve error reporting in os.urandom() when the failure is due... | Antoine Pitrou | 2013-08-16 | 1 | -0/+20 |
|
|
* | Issue #18296: Try to fix TestSendfile.test_trailers() of test_os on FreeBSD | Victor Stinner | 2013-08-15 | 1 | -4/+5 |
|
|
* | Use simple call to os.symlink for broken link (intended for previous commit) | Jason R. Coombs | 2013-05-28 | 1 | -1/+1 |
|
|
* | Issue #13772: Restored directory detection of targets in `os.symlink` on Wind... | Jason R. Coombs | 2013-05-28 | 1 | -8/+36 |
|
|
* | Issue #17702: use assertRaises() for the unit test | Victor Stinner | 2013-04-14 | 1 | -10/+4 |
|
|
* | Close #17702: os.environ now raises KeyError with the original environment | Victor Stinner | 2013-04-14 | 1 | -0/+18 |
|
|
* | Issue #14110: Fix test failures on FreeBSD if the user is in the wheel group. | Stefan Krah | 2013-01-17 | 1 | -3/+6 |
|
|
* | Issue #9644: Add a test on os.statvfs() for the PEP 383 | Victor Stinner | 2013-01-01 | 1 | -0/+9 |
|\ |
|
| * | Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding | Victor Stinner | 2013-01-01 | 1 | -0/+9 |
|
|
* | | Add test coverage for os.removedirs (#16775) | Andrew Svetlov | 2012-12-25 | 1 | -0/+46 |
|\ \
| |/ |
|
| * | Add test coverage for os.removedirs (#16775) | Andrew Svetlov | 2012-12-25 | 1 | -0/+46 |
|
|
* | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -8/+8 |
|\ \
| |/ |
|
| * | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -8/+8 |
|
|
* | | Issue #16218, #16444: Backport improvment on tests for non-ASCII characters | Victor Stinner | 2012-11-12 | 1 | -0/+4 |
|
|
* | | #1087: use proper skips in test_os. | Ezio Melotti | 2012-09-26 | 1 | -13/+13 |
|
|
* | | Issue #14992: merge from 3.2 | Ned Deily | 2012-08-09 | 1 | -1/+4 |
|\ \
| |/ |
|
| * | Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test case | Ned Deily | 2012-08-09 | 1 | -1/+4 |
|
|
* | | Issue #15202: Consistently use the name "follow_symlinks" for | Larry Hastings | 2012-07-15 | 1 | -7/+8 |
|
|
* | | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open. | Richard Oudkerk | 2012-07-06 | 1 | -0/+13 |
|
|
* | | Issue #15177: Added dir_fd parameter to os.fwalk(). | Larry Hastings | 2012-06-25 | 1 | -5/+24 |
|
|
* | | Closes #15161: add support for giving path as a fd for truncate() and pathcon... | Georg Brandl | 2012-06-24 | 1 | -0/+2 |
|
|
* | | Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" | Larry Hastings | 2012-06-23 | 1 | -1/+4 |
|
|
* | | Issue #14626: Large refactoring of functions / parameters in the os module. | Larry Hastings | 2012-06-22 | 1 | -83/+85 |
|
|
* | | Issue #14711: os.stat_float_times() has been deprecated. | Victor Stinner | 2012-06-04 | 1 | -2/+6 |
|
|
* | | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError | Gregory P. Smith | 2012-06-03 | 1 | -0/+25 |
|\ \
| |/ |
|
| * | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError | Gregory P. Smith | 2012-06-03 | 1 | -6/+34 |
|
|
* | | Add two more sorts to test_os.WalkTests I've missed before | Hynek Schlawack | 2012-05-15 | 1 | -0/+2 |
|
|
* | | Sort file list in test_os.WalkTests | Hynek Schlawack | 2012-05-15 | 1 | -0/+1 |
|
|
* | | #14773: Fix os.fwalk() failing on dangling symlinks | Hynek Schlawack | 2012-05-15 | 1 | -1/+5 |
|
|
* | | Issue #14082: shutil.copy2() now copies extended attributes, if possible. | Antoine Pitrou | 2012-05-12 | 1 | -19/+1 |
|
|
* | | Issue #14127: Add ns= parameter to utime, futimes, and lutimes. | Larry Hastings | 2012-05-03 | 1 | -14/+72 |
|
|
* | | Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. | Larry Hastings | 2012-04-19 | 1 | -0/+7 |
|
|
* | | all OSErrors should indicate there are no extended attributes (closes #14358) | Benjamin Peterson | 2012-03-19 | 1 | -3/+1 |
|
|
* | | update skip reason | Philip Jenvey | 2012-03-01 | 1 | -1/+1 |
|
|
* | | also skip test_device_encoding when stdin isn't a tty | Philip Jenvey | 2012-03-01 | 1 | -2/+2 |
|
|
* | | Issue #14153 Create _Py_device_encoding() to prevent _io from having to import | Brett Cannon | 2012-02-29 | 1 | -0/+19 |
|
|
* | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -8/+28 |
|\ \
| |/ |
|
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 1 | -8/+28 |
| |\ |
|
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 1 | -8/+28 |
|
|
* | | | get_terminal_size() can also fail with ENOTTY if the fd is not connected to a... | Antoine Pitrou | 2012-02-08 | 1 | -2/+9 |
|
|
* | | | Relax tests to fix buildbot failure | Antoine Pitrou | 2012-02-08 | 1 | -2/+2 |
|
|
* | | | Issue #13609: Add two functions to query the terminal size: | Antoine Pitrou | 2012-02-08 | 1 | -0/+38 |
|
|
* | | | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 1 | -31/+0 |
|
|
* | | | PEP 410 | Victor Stinner | 2012-02-08 | 1 | -0/+31 |
|
|
* | | | Issue #13964: Skip os.*utime*() tests if os.stat() doesn't support timestamp | Victor Stinner | 2012-02-08 | 1 | -0/+11 |
|
|
* | | | Issue #13964: Split os.*utime*() subsecond tests into multiple tests to help | Victor Stinner | 2012-02-08 | 1 | -38/+75 |
|
|
* | | | Issue #13964: Test also os.futimesat() | Victor Stinner | 2012-02-08 | 1 | -1/+8 |
|
|
* | | | Issue #13964: Write tests for new os.*utime*() functions | Victor Stinner | 2012-02-08 | 1 | -0/+37 |
|
|
* | | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 1 | -2/+2 |
|
|
* | | | Issue #13734: Add os.fwalk(), a directory walking function yielding file | Charles-François Natali | 2012-02-05 | 1 | -2/+58 |
|
|