summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-1/+1
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-0/+14
* gh-106046: Improve error message from `os.fspath` if `__fspath__` is set to `...Alex Waygood2023-06-251-0/+6
* GH-104898: Add __slots__ to os.PathLike (GH-104899)Barney Gale2023-05-251-0/+2
* gh-89727: Improve os.walk complexity (#100671)Stanislav Zmiev2023-01-021-6/+6
* gh-89727: Fix os.walk RecursionError on deep trees (#99803)Jon Burdo2022-12-191-77/+83
* gh-57179: Add note on symlinks for os.walk (#94799)Stanley2022-10-071-1/+2
* gh-87901: Remove the encoding argument from os.popen (GH-92836)Inada Naoki2022-05-191-3/+2
* gh-87901: Add encoding to os.popen (GH-92374)Inada Naoki2022-05-061-1/+2
* Fix missing spaces in os.walk example (GH-29918)辰冢2022-02-181-2/+2
* bpo-42053: Remove misleading check in os.fwalk() (GH-27669)Serhiy Storchaka2021-08-081-2/+1
* bpo-44631: Make the repr() of the _Environ class more readable. (#27128)Leonardo Freua2021-07-201-3/+5
* bpo-43651: Fix EncodingWarning in `os.fdopen()` and test_os (GH-25654)Inada Naoki2021-04-291-4/+4
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-041-2/+4
* bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687)pxinwr2020-12-151-45/+49
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-071-2/+3
* bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201)Victor Stinner2020-04-011-6/+2
* bpo-36144: Update os.environ and os.environb for PEP 584 (#18911)Charles Burkland2020-03-131-1/+19
* bpo-39567: Add audit for os.walk(), os.fwalk(), Path.glob() and Path.rglob()....Serhiy Storchaka2020-02-121-3/+7
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-26/+6
* bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336)Bar Harel2019-12-221-1/+5
* bpo-38994: Implement __class_getitem__ for PathLike (GH-17498)Batuhan Taşkaya2019-12-081-0/+3
* closes bpo-25461: Update os.walk() docstring to match the online docs. (GH-11...Bernt Røskar Brenna2019-09-101-4/+5
* Fix punctuation in `os.execvpe` docstring. (GH-15051)Hasan Ramezani2019-09-091-1/+1
* 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
* Assume the raw environ is always declared. (GH-8707)Benjamin Peterson2018-08-081-6/+0
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-1/+1
* 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
* bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799)Serhiy Storchaka2017-03-241-1/+1
* 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 hav...Steve Dower2016-11-201-0/+4
* 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
| * Fixed a bug in os.walk() with bytes path on Windows caused by merging fixesSerhiy Storchaka2016-02-241-1/+1
| * 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
* | Issue #28324: Remove vestigal MacOS 9 references in os.py docstring.Ned Deily2016-10-021-3/+3
* | 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
* | Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-1/+3
* | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-241-30/+41
* | 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