Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15177: Added dir_fd parameter to os.fwalk(). | Larry Hastings | 2012-06-25 | 1 | -2/+5 |
| | |||||
* | Issue #15176: Clarified behavior, documentation, and implementation | Larry Hastings | 2012-06-25 | 1 | -5/+8 |
| | | | | of os.listdir(). | ||||
* | More doc fixes: made it clear where to start reading when you click on <dir_fd>. | Larry Hastings | 2012-06-25 | 1 | -9/+10 |
| | |||||
* | Some tightening of the documentation for the new kwarg-style os module ↵ | Georg Brandl | 2012-06-25 | 1 | -42/+22 |
| | | | | functionality. | ||||
* | Grammar fix. | Georg Brandl | 2012-06-25 | 1 | -11/+11 |
| | |||||
* | Fix typos | Éric Araujo | 2012-06-24 | 1 | -3/+3 |
| | |||||
* | Fix doc of os.fwalk: example used now non-existing os.fstatat() | Hynek Schlawack | 2012-06-24 | 1 | -1/+1 |
| | |||||
* | Fix use of class markup. | Georg Brandl | 2012-06-24 | 1 | -2/+2 |
| | |||||
* | Issue #15118: Change return value of os.uname() and os.times() from | Larry Hastings | 2012-06-24 | 1 | -8/+40 |
| | | | | | plain tuples to immutable iterable objects with named attributes (structseq objects). | ||||
* | Fix casing of Unix. | Georg Brandl | 2012-06-24 | 1 | -3/+4 |
| | |||||
* | Make the style of the "Availability" sections consistent. | Georg Brandl | 2012-06-24 | 1 | -11/+16 |
| | |||||
* | Actually it is just one function. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
| | |||||
* | Minor clarification about fdopen(). | Georg Brandl | 2012-06-24 | 1 | -9/+10 |
| | |||||
* | Closes #15161: add support for giving path as a fd for truncate() and ↵ | Georg Brandl | 2012-06-24 | 1 | -2/+10 |
| | | | | pathconf(). | ||||
* | Restore mostly-alphabetic sorting of os functions. | Georg Brandl | 2012-06-24 | 1 | -141/+134 |
| | |||||
* | Note that equivalents are valid for 3.3+ only. | Georg Brandl | 2012-06-24 | 1 | -16/+20 |
| | |||||
* | Move Linux-only *xattr() functions to their own subheading. | Georg Brandl | 2012-06-24 | 1 | -84/+75 |
| | |||||
* | Small nits in os doc. | Georg Brandl | 2012-06-24 | 1 | -1/+2 |
| | |||||
* | "Refactor" docs for the new dir_fd, follow_symlinks, path-as-fd APIs: ↵ | Georg Brandl | 2012-06-24 | 1 | -269/+151 |
| | | | | document the options at a central place and link to it. | ||||
* | Issue #15154: Add "dir_fd" parameter to os.rmdir, remove "rmdir" | Larry Hastings | 2012-06-23 | 1 | -12/+21 |
| | | | | | | | 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: Large refactoring of functions / parameters in the os module. | Larry Hastings | 2012-06-22 | 1 | -418/+480 |
| | | | | | | | | | 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_DATA | Jesus Cea | 2012-06-22 | 1 | -0/+4 |
| | |||||
* | Issue #14711: os.stat_float_times() has been deprecated. | Victor Stinner | 2012-06-04 | 1 | -0/+2 |
| | |||||
* | #14863: Update the documentation of os.fdopen() | Petri Lehtinen | 2012-05-24 | 1 | -18/+5 |
|\ | |||||
| * | #14863: Update the documentation of os.fdopen() | Petri Lehtinen | 2012-05-24 | 1 | -15/+5 |
| | | | | | | | | | | | | There's no bufsize argument anymore, and os.fdopen() is only a very thin wrapper around open() anymore. Change the documentation to reflect that. | ||||
* | | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 1 | -1/+1 |
| | | | | | | | | Reverts some changes of d13fdd97cc8e. | ||||
* | | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -1/+1 |
| | | |||||
* | | Issue #14127: Add ns= parameter to utime, futimes, and lutimes. | Larry Hastings | 2012-05-03 | 1 | -17/+35 |
| | | | | | | | | | | | | Removed futimens as it is now redundant. Changed shutil.copystat to use st_atime_ns and st_mtime_ns from os.stat and ns= parameter to utime--it once again preserves exact metadata on Linux! | ||||
* | | Issue #10433: merge | Ned Deily | 2012-04-30 | 1 | -0/+18 |
|\ \ | |/ | |||||
| * | Issue #10433: Document unique behavior of 'os.getgroups' on Mac OS X. | Ned Deily | 2012-04-30 | 1 | -0/+18 |
| | | |||||
* | | Backing out 86dc014cdd74. Not ready yet | Jesus Cea | 2012-04-26 | 1 | -4/+0 |
| | | |||||
* | | Close #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-04-26 | 1 | -0/+4 |
| | | |||||
* | | Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. | Larry Hastings | 2012-04-19 | 1 | -6/+26 |
| | | |||||
* | | fix Sphinx error in os.rst | Eli Bendersky | 2012-02-11 | 1 | -2/+2 |
| | | |||||
* | | Issue #13609: Add two functions to query the terminal size: | Antoine Pitrou | 2012-02-08 | 1 | -0/+37 |
| | | | | | | | | | | os.get_terminal_size (low level) and shutil.get_terminal_size (high level). Patch by Zbigniew Jędrzejewski-Szmek. | ||||
* | | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 1 | -35/+6 |
| | | |||||
* | | PEP 410 | Victor Stinner | 2012-02-08 | 1 | -6/+35 |
| | | |||||
* | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 1 | -1/+1 |
| | | | | | | | | | | be consistent with other functions accepting file descriptors (fdlistdir() was added in 3.3, so hasn't been released yet). | ||||
* | | Issue #13734: Add os.fwalk(), a directory walking function yielding file | Charles-François Natali | 2012-02-05 | 1 | -0/+51 |
| | | | | | | | | descriptors. | ||||
* | | Issue #8828: Add new function os.replace(), for cross-platform renaming with ↵ | Antoine Pitrou | 2012-01-30 | 1 | -2/+16 |
| | | | | | | | | overwriting. | ||||
* | | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 1 | -6/+3 |
|\ \ | |/ | | | | | | | target's type (file or directory). The detection was buggy and made the call non-atomic (therefore prone to race conditions). | ||||
| * | Issue #13772: In os.symlink() under Windows, do not try to guess the link | Antoine Pitrou | 2012-01-24 | 1 | -6/+3 |
| | | | | | | | | | | target's type (file or directory). The detection was buggy and made the call non-atomic (therefore prone to race conditions). | ||||
* | | Issue #13757: Change os.fdlistdir() so that it duplicates the passed file | Charles-François Natali | 2012-01-10 | 1 | -1/+1 |
| | | | | | | | | descriptor (instead of closing it). | ||||
* | | Issue #12760: Add a create mode to open(). Patch by David Townshend. | Charles-François Natali | 2012-01-09 | 1 | -1/+4 |
| | | |||||
* | | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -1/+1 |
|\ \ | |/ | | | | | Patch written by Jérémy Anger. | ||||
| * | Issue #13530: Document os.lseek() result | Victor Stinner | 2011-12-17 | 1 | -1/+1 |
| | | | | | | | | Patch written by Jérémy Anger. | ||||
| * | #13233: fix typo. | Ezio Melotti | 2011-10-20 | 1 | -1/+1 |
| | | |||||
* | | Refactor functions signatures in the doc. | Ezio Melotti | 2011-11-08 | 1 | -8/+15 |
| | |