Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-34384: Fix os.readlink() on Windows (GH-8740) | Berker Peksag | 2018-08-15 | 1 | -1/+3 |
| | | | | | | | | | os.readlink() now accepts path-like and bytes objects on Windows. Previously, support for path-like and bytes objects was only implemented on Unix. This commit also merges Unix and Windows implementations of os.readlink() in one function and adds basic unit tests to increase test coverage of the function. | ||||
* | bpo-31368: Enhance os.preadv() documentation (GH-7254) | Pablo Galindo | 2018-05-30 | 1 | -95/+114 |
| | |||||
* | bpo-32878: Adds documentation for st_ino on Windows (GH-5764) | Steve Dower | 2018-05-29 | 1 | -1/+11 |
| | |||||
* | bpo-20104: Improve error handling and fix a reference leak in ↵ | Serhiy Storchaka | 2018-05-01 | 1 | -11/+27 |
| | | | | os.posix_spawn(). (#6332) | ||||
* | bpo-20709: os.utime(path_to_directory): wrong documentation for Windows. ↵ | Stéphane Wirtel | 2018-05-01 | 1 | -8/+6 |
| | | | | | | | | (GH-5469) Remove the paragraph where we explain that os.utime() does not support a directory as path under Windows. Patch by Jan-Philip Gehrcke Co-authored-by: Jan-Philip Gehrcke <jgehrcke@gmail.com> | ||||
* | Fix rendering issues in the documentation for the os module (#6525) | Pablo Galindo | 2018-04-25 | 1 | -4/+16 |
| | |||||
* | closes bpo-33202: fix os.walk mentioning os.listdir instead of os.scandir ↵ | Andrés Delfino | 2018-04-03 | 1 | -1/+1 |
| | | | | | | (GH-6335) | ||||
* | bpo-20104: Add os.posix_spawn documentation. (#6334) | Gregory P. Smith | 2018-04-01 | 1 | -0/+25 |
| | |||||
* | bpo-32659: Solaris "stat" should support "st_fstype" (#5307) | jcea | 2018-01-28 | 1 | -0/+10 |
| | | | | | | * bpo-32659: Solaris "stat" should support "st_fstype" * Add 'versionadded' | ||||
* | bpo-31368: Expose preadv and pwritev in the os module (#5239) | Pablo Galindo | 2018-01-27 | 1 | -0/+84 |
| | |||||
* | bpo-32651 Recommend getpass.getuser() (#5301) | Barry Warsaw | 2018-01-24 | 1 | -4/+5 |
| | | | | * bpo-32651 - In the documentation for os.getlogin(), recommend getpass.getuser() | ||||
* | return the new file descriptor from os.dup2 (closes bpo-32441) (#5041) | Benjamin Peterson | 2017-12-29 | 1 | -3/+7 |
| | |||||
* | bpo-32143: add f_fsid to os.statvfs() (#4571) | Giuseppe Scrivano | 2017-12-14 | 1 | -1/+4 |
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||||
* | bpo-31827: Remove os.stat_float_times() (GH-4061) | Victor Stinner | 2017-10-24 | 1 | -29/+0 |
| | |||||
* | bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) | Gregory P. Smith | 2017-05-29 | 1 | -8/+16 |
| | | | | Instead use keyword only arguments to os.register_at_fork for each of the scenarios. Updates the documentation for clarity. | ||||
* | bpo-16500: Allow registering at-fork handlers (#1715) | Antoine Pitrou | 2017-05-27 | 1 | -0/+25 |
| | | | | | | | | | | | | * bpo-16500: Allow registering at-fork handlers * Address Serhiy's comments * Add doc for new C API * Add doc for new Python-facing function * Add NEWS entry + doc nit | ||||
* | bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502) | Serhiy Storchaka | 2017-03-30 | 1 | -1/+9 |
| | | | | 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 Storchaka | 2017-03-24 | 1 | -2/+9 |
| | | | permission bits of newly-created intermediate-level directories. | ||||
* | bpo-28682: Added support for bytes paths in os.fwalk(). (#489) | Serhiy Storchaka | 2017-03-07 | 1 | -0/+3 |
| | |||||
* | Tweak PEP 519 documentation in stdlib (#163) | Berker Peksag | 2017-02-19 | 1 | -1/+1 |
| | | | | * Drop duplicate work 'object' in lzma docs * Fix typo in os docs: fpr -> for | ||||
* | Issue #29092: Sync os.stat's doc and docstring on path type. | Xiang Zhang | 2017-01-22 | 1 | -1/+1 |
|\ | |||||
| * | Issue #29092: Sync os.stat's doc and docstring on path type. | Xiang Zhang | 2017-01-22 | 1 | -1/+1 |
| | | |||||
* | | Issue #27998: Documented bytes paths support on Windows. | Serhiy Storchaka | 2016-11-20 | 1 | -12/+11 |
| | | |||||
* | | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -2/+2 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-09-26 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Document that os.mknod() is not available on Windows | Berker Peksag | 2016-09-26 | 1 | -0/+2 |
| | | | | | | | | Reported by Regina Ochotzki on docs@p.o. | ||||
* | | Merge from 3.5 | Berker Peksag | 2016-09-26 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | os.genenvb() is not availabnle under Windows | Berker Peksag | 2016-09-26 | 1 | -0/+3 |
| | | |||||
* | | Closes #23105: Merged update from 3.5. | Vinay Sajip | 2016-09-11 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | Issue #23105: Updated documentation on open() flag constants. | Vinay Sajip | 2016-09-11 | 1 | -6/+6 |
| | | |||||
* | | os.urandom() now blocks on Linux | Victor Stinner | 2016-09-06 | 1 | -8/+21 |
| | | | | | | | | | | | | | | Issue #27776: The os.urandom() function does now block on Linux 3.17 and newer until the system urandom entropy pool is initialized to increase the security. This change is part of the PEP 524. | ||||
* | | Add os.getrandom() | Victor Stinner | 2016-09-06 | 1 | -8/+49 |
| | | | | | | | | | | | | | | Issue #27778: Expose the Linux getrandom() syscall as a new os.getrandom() function. This change is part of the PEP 524. | ||||
* | | Issue #26027, #27524: Document the support for path-like objects in os and ↵ | Brett Cannon | 2016-09-06 | 1 | -16/+142 |
| | | | | | | | | | | | | os.path. This completes PEP 519. | ||||
* | | Issue #27355: Removed support for Windows CE. It was never finished, | Larry Hastings | 2016-09-05 | 1 | -1/+1 |
| | | | | | | | | and Windows CE is no longer a relevant platform for Python. | ||||
* | | Issue #27626: Merge spelling fixes from 3.5 | Martin Panter | 2016-07-28 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | | | | | Based on patch by Ville Skyttä. | ||||
| * | Remove a stale reference to pathlib.PurePath.path | Brett Cannon | 2016-06-24 | 1 | -3/+2 |
| | | |||||
* | | Issue #27038: Expose DirEntry as os.DirEntry. | Brett Cannon | 2016-06-24 | 1 | -24/+26 |
| | | | | | | | | Thanks to Jelle Zijlstra for the code portion of the patch. | ||||
* | | Issue #27186: Define what a "path-like object" is. | Brett Cannon | 2016-06-24 | 1 | -7/+9 |
| | | | | | | | | Thanks to Dusty Phillips for the initial patch. | ||||
* | | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return | Brett Cannon | 2016-06-24 | 1 | -6/+8 |
| | | | | | | | | | | | | | | type of __fspath__(). As part of this change, also make sure that the pure Python implementation of os.fspath() is tested. | ||||
* | | [merge from 3.5] - issue27021 - Document SC_IOV_MAX limitation imposed by OS ↵ | Senthil Kumaran | 2016-06-18 | 1 | -1/+5 |
|\ \ | |/ | | | | | | | | | on os.writev. Patch contributed Марк Коренберг. | ||||
| * | issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev. | Senthil Kumaran | 2016-06-18 | 1 | -1/+5 |
| | | | | | | | | Patch contributed Марк Коренберг. | ||||
* | | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
| | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | | Issue #27186: Add os.PathLike support to DirEntry | Brett Cannon | 2016-06-10 | 1 | -0/+6 |
| | | | | | | | | Initial patch thanks to Jelle Zijlstra. | ||||
* | | Issue #24617: Merge os.mkdir() doc from 3.5 | Martin Panter | 2016-06-10 | 1 | -4/+10 |
|\ \ | |/ | |||||
| * | Issue #24617: Add comment for os.mkdir about mode quirks | Tommy Beadle | 2016-06-02 | 1 | -4/+10 |
| | | |||||
* | | Add a versionadded directive to os.PathLike | Berker Peksag | 2016-06-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #27182: Document os.PathLike. | Brett Cannon | 2016-06-09 | 1 | -0/+21 |
| | | | | | | | | Part of PEP 519. |