summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-291-0/+37
|
* Use generator instead of list in code examples (GH-11203)Recursing2018-12-231-2/+2
| | | | There is no need to create a list for `sum` Also, becomes consistent with the first example in Doc/library/os.rst
* Assume the raw environ is always declared. (GH-8707)Benjamin Peterson2018-08-081-6/+0
| | | posixmodule.c always declares environ, so don't bother catching a NameError in os.py.
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
| | | | | | | | * Fix multiple typos in code comments * Add spacing in comments (test_logging.py, test_math.py) * Fix spaces at the beginning of comments in test_logging.py
* bpo-30152: Reduce the number of imports for argparse. (#1269)Serhiy Storchaka2017-09-251-12/+9
|
* bpo-30441: Fix bug when modifying os.environ while iterating over it (#2409)Osvaldo Santana Neto2017-07-011-1/+3
|
* bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502)Serhiy Storchaka2017-03-301-17/+25
| | | | os.fwalk() is sped up by 2 times by using os.scandir().
* bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799)Serhiy Storchaka2017-03-241-1/+1
| | | permission bits of newly-created intermediate-level directories.
* bpo-28682: Added support for bytes paths in os.fwalk(). (#489)Serhiy Storchaka2017-03-071-3/+7
|
* Fixes empty tuple case.Steve Dower2016-11-201-1/+1
|
* Issue #28732: Adds new errors to spawnv emulation for platforms that only ↵Steve Dower2016-11-201-0/+4
| | | | have fork and execv
* Issue #28353: os.fwalk() no longer fails on broken links.Serhiy Storchaka2016-10-251-2/+2
|\
| * 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 #27998: Removed workarounds for supporting bytes paths on Windows inSerhiy Storchaka2016-10-051-67/+3
| | | | | | | | | | os.walk() function and glob module since os.scandir() now directly supports them.
* | Issue #28324: Remove vestigal MacOS 9 references in os.py docstring.Ned Deily2016-10-021-3/+3
| | | | | | | | Patch by Chi Hsuan Yen.
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-4/+1
| |
* | Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-051-23/+2
| | | | | | | | and Windows CE is no longer a relevant platform for Python.
* | Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-1/+3
| | | | | | | | | | | | os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c.
* | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-241-30/+41
| | | | | | | | | | | | | | type of __fspath__(). As part of this change, also make sure that the pure Python implementation of os.fspath() is tested.
* | Fix some PEP 8 violations.Brett Cannon2016-06-091-10/+6
| |
* | issue27186: fix fsencode/fsdecode and update tests; patch by Jelle ZijlstraEthan Furman2016-06-041-2/+2
| |
* | issue27186: add PathLike ABCEthan Furman2016-06-041-1/+16
| |
* | issue27186: add C version of os.fspath(); patch by Jelle ZijlstraEthan Furman2016-06-041-17/+18
| |
* | issue27182: update fsencode and fsdecode for os.path(); patch by Dusty PhillipsEthan Furman2016-06-041-8/+14
| |
* | issue27186 -- initial docs, tests, and python version of os.fspathEthan Furman2016-06-021-0/+21
| |
* | Fix os._DummyDirEntry.is_symlink()Victor Stinner2016-03-291-6/+17
| | | | | | | | | | Issue #25911: Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False).
* | Enhance os._DummyDirEntryVictor Stinner2016-03-241-2/+23
| | | | | | | | | | | | | | | | | | Issue #25911: * Try to fix test_os.BytesWalkTests on Windows * Try to mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat()
* | Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.Serhiy Storchaka2016-02-111-1/+5
| | | | | | | | Different solution from 3.5.
* | Issue #25994: Added the close() method and the support of the context managerSerhiy Storchaka2016-02-111-39/+55
|/ | | | protocol for the os.scandir() iterator.
* 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