summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15202: Consistently use the name "follow_symlinks" forLarry Hastings2012-07-151-9/+9
* Issue #15177: Added dir_fd parameter to os.fwalk().Larry Hastings2012-06-251-7/+11
* 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-4/+1
* Issue #14626: Fix buildbot issue on OpenIndiana 3.x machines. (Hopefully.)Larry Hastings2012-06-231-10/+21
* Issue #14626: Large refactoring of functions / parameters in the os module.Larry Hastings2012-06-221-13/+104
* Closes #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-06-221-0/+1
* Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-2/+14
|\
| * Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-2/+14
* | #14862: Add missing names to os.__all__Petri Lehtinen2012-05-231-2/+9
* | #14773: Fix os.fwalk() failing on dangling symlinksHynek Schlawack2012-05-151-7/+17
* | use yield fromBenjamin Peterson2012-05-101-6/+3
* | Backing out 86dc014cdd74. Not ready yetJesus Cea2012-04-261-1/+0
* | Close #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-04-261-0/+1
* | Use os.path.samestat() instead of reinventing the wheel.Charles-François Natali2012-04-221-9/+2
* | Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-0/+2
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-17/+0
|\ \ | |/
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-17/+0
| |\
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-201-17/+0
* | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), toCharles-François Natali2012-02-061-1/+1
* | | Issue #13734: Add os.fwalk(), a directory walking function yielding fileCharles-François Natali2012-02-051-5/+96
* | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-1/+3
|\ \ \ | |/ /
| * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-1/+3
| |\ \ | | |/
| | * Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-1/+3
| | * Merged revisions 80421,80424 via svnmerge fromVictor Stinner2010-04-251-0/+2
| | * Merged revisions 78316 via svnmerge fromEzio Melotti2010-02-221-0/+10
| | * Merged revisions 77881 via svnmerge fromMatthias Klose2010-01-311-1/+1
| | * Merged revisions 76723 via svnmerge fromAntoine Pitrou2009-12-091-0/+4
| | * Merged revisions 73934 via svnmerge fromAmaury Forgeot d'Arc2009-07-111-1/+7
* | | Issue #11085: Moved collections abstract base classes into a separate moduleRaymond Hettinger2011-02-221-1/+1
|/ /
* | Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' ex...Terry Reedy2010-12-021-6/+20
* | os module: remove nonbreaking space in a commentVictor Stinner2010-11-071-2/+2
* | os.get_exec_path() ignores BytesWarning instead of recoding themVictor Stinner2010-11-061-28/+24
* | Issue #10210: os.get_exec_path() ignores BytesWarning warningsVictor Stinner2010-10-291-2/+16
* | str.encode() doesn't accept None as errors: use 'strict' insteadVictor Stinner2010-10-241-1/+1
* | os: fsencode(), fsdecode() and os.environ(b) internal encode-decode methodsVictor Stinner2010-10-241-32/+37
* | Issue #8603: Environ.data is now protected -> Environ._dataVictor Stinner2010-09-101-8/+8
* | Fix os.get_exec_path() (code and tests) for python -bbVictor Stinner2010-08-191-2/+2
* | Create os.fsdecode(): decode from the filesystem encoding with surrogateescapeVictor Stinner2010-08-191-11/+30
* | #8603: Add environb to os.__all__Victor Stinner2010-07-291-1/+2
* | Issue #9283: Oops, add missing { and } to repr(os.environ)Victor Stinner2010-07-281-1/+1
* | #9283: Fix repr(os.environ), display unicode keys and values on POSIX systemsVictor Stinner2010-07-281-1/+3
* | Issue #8969: On Windows, use mbcs codec in strict mode to encode and decodeVictor Stinner2010-06-111-9/+12
* | Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.Victor Stinner2010-05-181-4/+33
* | Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytesVictor Stinner2010-05-081-0/+11
* | Issue #8603: Create a bytes version of os.environ for UnixVictor Stinner2010-05-061-19/+68
* | Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates andVictor Stinner2010-04-231-0/+2
* | Add an os.get_exec_path() function to return the list of directoriesGregory P. Smith2010-02-271-10/+17
* | #7310: fix the repr() of os.environEzio Melotti2010-02-221-0/+10
* | Merged revisions 77879 via svnmerge fromMatthias Klose2010-01-311-1/+1