summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.5] bpo-30441: Fix bug when modifying os.environ while iterating over it ↵Serhiy Storchaka2017-07-041-1/+3
| | | | | (GH-2409). (#2557) (cherry picked from commit 8a8d28501fc8ce25926d168f1c657656c809fd4c)
* Issue #28353: os.fwalk() no longer fails on broken links.Serhiy Storchaka2016-10-251-2/+2
|
* Issue #25911: Backport os._DummyDirEntry fixesVictor Stinner2016-03-291-2/+36
| | | | | | | | | * Fix test_os.BytesWalkTests on Windows * Mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat() * Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False).
* Fixed a bug in os.walk() with bytes path on Windows caused by merging fixesSerhiy Storchaka2016-02-241-1/+1
| | | | for issues #25995 and #25911.
* Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.Serhiy Storchaka2016-02-111-11/+2
|
* Issue #25911: Restored support of bytes paths in os.walk() on Windows.Serhiy Storchaka2016-02-081-5/+22
|
* Issue #25860: os.fwalk() no longer skips remaining directories when error ↵Serhiy Storchaka2015-12-221-1/+1
| | | | | | occurs. Original patch by Samson Lee.
* Issue #25583: Merge makedirs fix from 3.4 into 3.5Martin Panter2015-11-201-3/+5
|\
| * Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)Martin Panter2015-11-191-3/+5
| |
* | merge 3.4 (#23929)Benjamin Peterson2015-04-141-1/+1
|\ \ | |/
| * remove useless word (closes #23929)Benjamin Peterson2015-04-141-1/+1
| |
* | Issue #23605: Fix typo in an os.walk() commentVictor Stinner2015-03-301-1/+1
| | | | | | | | Thanks Ben Hoyt for the report.
* | Issue #23605: Fix os.walk(topdown=True), don't cache entry.is_symlink() becauseVictor Stinner2015-03-181-29/+51
| | | | | | | | | | | | | | the caller can replace the directory with a different file kind. The bottom-up way, os.walk(topdown=False), still uses entry.is_symlink(), and so can be faster than Python 3.4.
* | Issue #23605: os.walk() doesn't need to call entry.is_symlink() if followlinksVictor Stinner2015-03-121-2/+3
| | | | | | | | is True
* | Issue #23605: os.walk() now calls os.scandir() instead of os.listdir().Victor Stinner2015-03-101-15/+36
| | | | | | | | | | The usage of os.scandir() reduces the number of calls to os.stat(). Initial patch written by Ben Hoyt.
* | os: Include posix functions in os.__all__. Closes issue #18554.Yury Selivanov2014-09-261-0/+4
|/ | | | Patch by Ronald Oussoren.
* Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.Ned Deily2014-06-271-1/+1
|
* clarify when the list of subdirectories is read (closes #13779)Benjamin Peterson2014-06-161-5/+7
|
* merge 3.3 (#21082)Benjamin Peterson2014-04-011-25/+5
|\
| * merge 3.2 (#21082)Benjamin Peterson2014-04-011-25/+5
| |\
| | * remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-011-23/+5
| | |
* | | Fix parameter name in docs for os.makedirs and os.removedirs.Zachary Ware2014-03-201-2/+2
| | | | | | | | | | | | Pointed out by Colin Davis on docs@.
* | | Issue #19218: Rename collections.abc to _collections_abc in order to speed ↵Christian Heimes2013-10-131-1/+1
| | | | | | | | | | | | up interpreter start
* | | Issue #19209: Remove import of copyreg from the os module to speed upChristian Heimes2013-10-111-27/+0
| | | | | | | | | | | | | | | | | | interpreter startup. stat_result and statvfs_result are now hard-coded to reside in the os module. The patch is based on Victor Stinner's patch.
* | | (Merge 3.3) Close #17702: On error, os.environb now removes suppress the exceptVictor Stinner2013-08-231-2/+2
|\ \ \ | |/ / | | | | | | context when raising a new KeyError with the original key.
| * | Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-2/+2
| | | | | | | | | | | | when raising a new KeyError with the original key.
* | | 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-141-7/+7
| | | | | | | | | | | | ModuleNotFoundError.
* | | 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
|\ \ \ | |/ / | | | | | | | | | environment variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
| * | Close #17702: os.environ now raises KeyError with the original environmentVictor Stinner2013-04-141-4/+12
| | | | | | | | | | | | variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
* | | modernize some modules' code by replacing ↵Giampaolo Rodola'2013-02-121-3/+2
| | | | | | | | | | | | OSError->ENOENT/ENOTDIR/EPERM/EEXIST occurrences with the corresponding pep-3151 exceptions (FileNotFoundError, NotADirectoryError, etc.)
* | | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
|\ \ \ | |/ / | | | | | | Patch by Alessandro Moura.
| * | Issue #15845: Fix comparison between bytes and string.Serhiy Storchaka2013-01-081-1/+4
| |\ \ | | |/
| | * 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
| | | | | | | | | | | | break someone's over specified test that depends on the exact error message.
* | | fix typo (#16720)Andrew Svetlov2012-12-241-1/+1
| | |
* | | Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-7/+7
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
| | |
* | | merge 3.3Benjamin Peterson2012-10-091-1/+1
|\ \ \ | |/ /
| * | compare singletons by identity not equality (closes #16712)Benjamin Peterson2012-10-091-1/+1
| | | | | | | | | | | | Patch from Serhiy Storchaka.
* | | #16135: Removal of OS/2 support (Python code partial cleanup)Jesus Cea2012-10-051-28/+4
|/ /
* | Issue #15202: Consistently use the name "follow_symlinks" forLarry Hastings2012-07-151-9/+9
| | | | | | | | new parameters in os and shutil functions. Patch by Serhiy Storchaka.
* | 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 ↵Georg Brandl2012-06-241-0/+2
| | | | | | | | pathconf().
* | Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir"Larry Hastings2012-06-231-4/+1
| | | | | | | | | | | | | | parameter from os.remove / os.unlink. Patch written by Georg Brandl. (I'm really looking forward to George getting commit privileges so I don't have to keep doing checkins on his behalf.)
* | 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
| | | | | | | | | | | | | | | | | | Many functions now support "dir_fd" and "follow_symlinks" parameters; some also support accepting an open file descriptor in place of of a path string. Added os.support_* collections as LBYL helpers. Removed many functions only previously seen in 3.3 alpha releases (often starting with "f" or "l", or ending with "at"). Originally suggested by Serhiy Storchaka; implemented by Larry Hastings.
* | Closes #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-06-221-0/+1
| |