| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15202: Consistently use the name "follow_symlinks" for | Larry Hastings | 2012-07-15 | 1 | -9/+9 |
|
|
* | Issue #15177: Added dir_fd parameter to os.fwalk(). | Larry Hastings | 2012-06-25 | 1 | -7/+11 |
|
|
* | 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 | -4/+1 |
|
|
* | Issue #14626: Fix buildbot issue on OpenIndiana 3.x machines. (Hopefully.) | Larry Hastings | 2012-06-23 | 1 | -10/+21 |
|
|
* | Issue #14626: Large refactoring of functions / parameters in the os module. | Larry Hastings | 2012-06-22 | 1 | -13/+104 |
|
|
* | Closes #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-06-22 | 1 | -0/+1 |
|
|
* | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError | Gregory P. Smith | 2012-06-03 | 1 | -2/+14 |
|\ |
|
| * | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError | Gregory P. Smith | 2012-06-03 | 1 | -2/+14 |
|
|
* | | #14862: Add missing names to os.__all__ | Petri Lehtinen | 2012-05-23 | 1 | -2/+9 |
|
|
* | | #14773: Fix os.fwalk() failing on dangling symlinks | Hynek Schlawack | 2012-05-15 | 1 | -7/+17 |
|
|
* | | use yield from | Benjamin Peterson | 2012-05-10 | 1 | -6/+3 |
|
|
* | | Backing out 86dc014cdd74. Not ready yet | Jesus Cea | 2012-04-26 | 1 | -1/+0 |
|
|
* | | Close #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-04-26 | 1 | -0/+1 |
|
|
* | | Use os.path.samestat() instead of reinventing the wheel. | Charles-François Natali | 2012-04-22 | 1 | -9/+2 |
|
|
* | | Issue #2377: Make importlib the implementation of __import__(). | Brett Cannon | 2012-04-14 | 1 | -0/+2 |
|
|
* | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -17/+0 |
|\ \
| |/ |
|
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 1 | -17/+0 |
| |\ |
|
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 1 | -17/+0 |
|
|
* | | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 1 | -1/+1 |
|
|
* | | | Issue #13734: Add os.fwalk(), a directory walking function yielding file | Charles-François Natali | 2012-02-05 | 1 | -5/+96 |
|
|
* | | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+3 |
|\ \ \
| |/ / |
|
| * | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+3 |
| |\ \
| | |/ |
|
| | * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -1/+3 |
|
|
| | * | Merged revisions 80421,80424 via svnmerge from | Victor Stinner | 2010-04-25 | 1 | -0/+2 |
|
|
| | * | Merged revisions 78316 via svnmerge from | Ezio Melotti | 2010-02-22 | 1 | -0/+10 |
|
|
| | * | Merged revisions 77881 via svnmerge from | Matthias Klose | 2010-01-31 | 1 | -1/+1 |
|
|
| | * | Merged revisions 76723 via svnmerge from | Antoine Pitrou | 2009-12-09 | 1 | -0/+4 |
|
|
| | * | Merged revisions 73934 via svnmerge from | Amaury Forgeot d'Arc | 2009-07-11 | 1 | -1/+7 |
|
|
* | | | Issue #11085: Moved collections abstract base classes into a separate module | Raymond Hettinger | 2011-02-22 | 1 | -1/+1 |
|/ / |
|
* | | Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' ex... | Terry Reedy | 2010-12-02 | 1 | -6/+20 |
|
|
* | | os module: remove nonbreaking space in a comment | Victor Stinner | 2010-11-07 | 1 | -2/+2 |
|
|
* | | os.get_exec_path() ignores BytesWarning instead of recoding them | Victor Stinner | 2010-11-06 | 1 | -28/+24 |
|
|
* | | Issue #10210: os.get_exec_path() ignores BytesWarning warnings | Victor Stinner | 2010-10-29 | 1 | -2/+16 |
|
|
* | | str.encode() doesn't accept None as errors: use 'strict' instead | Victor Stinner | 2010-10-24 | 1 | -1/+1 |
|
|
* | | os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methods | Victor Stinner | 2010-10-24 | 1 | -32/+37 |
|
|
* | | Issue #8603: Environ.data is now protected -> Environ._data | Victor Stinner | 2010-09-10 | 1 | -8/+8 |
|
|
* | | Fix os.get_exec_path() (code and tests) for python -bb | Victor Stinner | 2010-08-19 | 1 | -2/+2 |
|
|
* | | Create os.fsdecode(): decode from the filesystem encoding with surrogateescape | Victor Stinner | 2010-08-19 | 1 | -11/+30 |
|
|
* | | #8603: Add environb to os.__all__ | Victor Stinner | 2010-07-29 | 1 | -1/+2 |
|
|
* | | Issue #9283: Oops, add missing { and } to repr(os.environ) | Victor Stinner | 2010-07-28 | 1 | -1/+1 |
|
|
* | | #9283: Fix repr(os.environ), display unicode keys and values on POSIX systems | Victor Stinner | 2010-07-28 | 1 | -1/+3 |
|
|
* | | Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode | Victor Stinner | 2010-06-11 | 1 | -9/+12 |
|
|
* | | Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value. | Victor Stinner | 2010-05-18 | 1 | -4/+33 |
|
|
* | | Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes | Victor Stinner | 2010-05-08 | 1 | -0/+11 |
|
|
* | | Issue #8603: Create a bytes version of os.environ for Unix | Victor Stinner | 2010-05-06 | 1 | -19/+68 |
|
|
* | | Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and | Victor Stinner | 2010-04-23 | 1 | -0/+2 |
|
|
* | | Add an os.get_exec_path() function to return the list of directories | Gregory P. Smith | 2010-02-27 | 1 | -10/+17 |
|
|
* | | #7310: fix the repr() of os.environ | Ezio Melotti | 2010-02-22 | 1 | -0/+10 |
|
|
* | | Merged revisions 77879 via svnmerge from | Matthias Klose | 2010-01-31 | 1 | -1/+1 |
|
|