summaryrefslogtreecommitdiff
path: root/Lib/os.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.Ned Deily2014-06-261-1/+1
* clarify when the list of subdirectories is read (closes #13779)Benjamin Peterson2014-06-151-5/+7
* merge 3.3 (#21082)Benjamin Peterson2014-04-011-72/+27
|\
| * Fix parameter name in docs for os.makedirs and os.removedirs.Zachary Ware2014-03-201-2/+2
| * Issue #19218: Rename collections.abc to _collections_abc in order to speed up...Christian Heimes2013-10-131-1/+1
| * Issue #19209: Remove import of copyreg from the os module to speed upChristian Heimes2013-10-121-27/+0
| * (Merge 3.3) Close #17702: On error, os.environb now removes suppress the exceptVictor Stinner2013-08-231-2/+2
| |\
| * | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-7/+7
| * | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-7/+7
| * | Correction for 4f82b6cfee46.Richard Oudkerk2013-05-071-1/+6
| * | Fix os.__all__ to is passes test___all__Richard Oudkerk2013-05-071-6/+8
| * | (Merge 3.3) Close #17702: os.environ now raises KeyError with the originalVictor Stinner2013-04-141-4/+12
| |\ \
| * | | modernize some modules' code by replacing OSError->ENOENT/ENOTDIR/EPERM/EEXIS...Giampaolo Rodola'2013-02-121-3/+2
| * | | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-36/+12
| |\ \ \
| | * | | fix typo (#16720)Andrew Svetlov2012-12-241-1/+1
| | * | | Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-7/+7
| | * | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
| | * | | merge 3.3Benjamin Peterson2012-10-091-1/+1
| | |\ \ \
| | * | | | #16135: Removal of OS/2 support (Python code partial cleanup)Jesus Cea2012-10-051-28/+4
* | | | | | merge 3.2 (#21082)Benjamin Peterson2014-04-011-25/+5
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | |
| * | | | | remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-011-23/+5
* | | | | | Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-2/+2
| |_|_|_|/ |/| | | |
* | | | | Close #17702: os.environ now raises KeyError with the original environmentVictor Stinner2013-04-141-4/+12
| |/ / / |/| | |
* | | | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-15/+224
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | compare singletons by identity not equality (closes #16712)Benjamin Peterson2012-10-091-1/+1
| |/
| * 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-221-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-11/+111
| |\
| | * #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-211-6/+97
| | |\
| | | * 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 #11085: Moved collections abstract base classes into a separate moduleRaymond Hettinger2011-02-221-1/+1
* | | | | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
* | | | | Revert the modification of e.strerror in 3.2 as that kind of change couldGregory P. Smith2012-06-031-3/+0
|/ / / /
* | | | Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSErrorGregory P. Smith2012-06-031-2/+14
|/ / /
* | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-43/+193
|\ \ \ | | |/ | |/|
| * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-1/+3
| |\ \ | | |/ | |/|