summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
Commit message (Collapse)AuthorAgeFilesLines
* fix Sphinx error in os.rstEli Bendersky2012-02-111-2/+2
|
* Issue #13609: Add two functions to query the terminal size:Antoine Pitrou2012-02-081-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 yetVictor Stinner2012-02-081-35/+6
|
* PEP 410Victor Stinner2012-02-081-6/+35
|
* Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), toCharles-François Natali2012-02-061-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 fileCharles-François Natali2012-02-051-0/+51
| | | | descriptors.
* Issue #8828: Add new function os.replace(), for cross-platform renaming with ↵Antoine Pitrou2012-01-301-2/+16
| | | | overwriting.
* Issue #13772: In os.symlink() under Windows, do not try to guess the linkAntoine Pitrou2012-01-241-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 linkAntoine Pitrou2012-01-241-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 fileCharles-François Natali2012-01-101-1/+1
| | | | | | | | descriptor (instead of closing it).
* | Issue #12760: Add a create mode to open(). Patch by David Townshend.Charles-François Natali2012-01-091-1/+4
| |
* | Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-1/+1
|\ \ | |/ | | | | Patch written by Jérémy Anger.
| * Issue #13530: Document os.lseek() resultVictor Stinner2011-12-171-1/+1
| | | | | | | | Patch written by Jérémy Anger.
| * #13233: fix typo.Ezio Melotti2011-10-201-1/+1
| |
* | Refactor functions signatures in the doc.Ezio Melotti2011-11-081-8/+15
| |
* | Backed out changeset 60ae7979fec8Brian Curtin2011-11-081-6/+6
| |
* | Remove the old style [...] to denote optional args and show the defaults.Brian Curtin2011-11-081-6/+6
| |
* | Fix #13327. utimensat now has the atime and mtime arguments set as optional,Brian Curtin2011-11-071-4/+4
| | | | | | | | | | | | | | defaulting to None like the other utimes family members. It now accepts keyword arguments because, unlike other other functions in the family, it has a `flags` value at the end of the argument list (which retains its 0 default).
* | Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat,Brian Curtin2011-11-071-10/+6
| | | | | | | | and lutimes.
* | Fix #13327. Remove the need for an explicit None as the second argument toBrian Curtin2011-11-061-10/+11
| | | | | | | | | | os.utime in order to update to the current time. The second argument is now optional.
* | Issue #13226: Add RTLD_xxx constants to the os module. These constants can byVictor Stinner2011-10-251-0/+13
| | | | | | | | used with sys.setdlopenflags().
* | Mention that os.O_CLOEXEC was added to Python 3.3Victor Stinner2011-10-191-0/+2
| |
* | Merge with 3.2.Ezio Melotti2011-10-191-1/+1
|\ \ | |/
* | #12277: merge with 3.2.Ezio Melotti2011-10-181-1/+1
|\ \ | |/
| * #12277: add missing comma.Ezio Melotti2011-10-181-1/+1
| |
* | Fix typo in the os doc: lremoveattr => lremovexattrVictor Stinner2011-10-131-2/+2
| |
* | Replace mentions of IOErrorAntoine Pitrou2011-10-121-5/+2
| |
* | Merge with 3.2.Ross Lagerwall2011-09-011-5/+0
|\ \ | |/
| * Remove duplicate text in os documentation.Ross Lagerwall2011-09-011-5/+0
| |
* | expose linux extended file system attributes (closes #12720)Benjamin Peterson2011-09-011-0/+148
| |
* | #12191: add shutil.chown() to change user and/or group owner of a given path ↵Sandro Tosi2011-08-221-0/+3
| | | | | | | | also specifying their names.
* | expose sched.h functions (closes #12655)Benjamin Peterson2011-08-021-0/+149
| |
* | Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe ↵Antoine Pitrou2011-07-181-1/+3
|\ \ | |/ | | | | under Windows.
| * Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe ↵Antoine Pitrou2011-07-181-1/+3
| | | | | | | | under Windows.
* | Issue #12326: document the recommended idiom for checking sys.platform on ↵Antoine Pitrou2011-07-091-0/+7
|\ \ | |/ | | | | | | | | Unix systems. Also, point to the various alternatives.
| * Issue #12326: document the recommended idiom for checking sys.platform on ↵Antoine Pitrou2011-07-091-0/+7
| | | | | | | | | | | | Unix systems. Also, point to the various alternatives.
* | (merge 3.2) Issue #12423: Fix os.abort() documentationVictor Stinner2011-07-081-2/+3
|\ \ | |/ | | | | | | The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.
| * Issue #12423: Fix os.abort() documentationVictor Stinner2011-07-081-2/+3
| | | | | | | | | | The Python signal handler for SIGABRT is not called on os.abort() (only if the signal is raised manually or sent by another process). Patch by Kamil Kisiel.
* | merge from 3.2Senthil Kumaran2011-07-041-1/+1
|\ \ | |/
| * Fix whitespace nit in datetime and os rst files.Senthil Kumaran2011-07-041-1/+1
| |
* | Merge from 3.2 . Replace the term members with correct and appropriate ↵Senthil Kumaran2011-07-041-5/+6
|\ \ | |/ | | | | terminology. Initial patch by Adam Woodbeck.
| * issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵Senthil Kumaran2011-07-041-5/+6
| | | | | | | | attribute and 'methods' where it denotes methods. Context should clarify usage.
* | Issue #8746: Correct faulty configure checks so that os.chflags() andNed Deily2011-06-281-0/+2
|\ \ | |/ | | | | | | | | | | os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
| * Issue #8746: Correct faulty configure checks so that os.chflags() andNed Deily2011-06-281-0/+2
| | | | | | | | | | | | | | os.lchflags() are once again built on systems that support these functions (*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and UF_COMPRESSED). Also add additional tests for os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
* | Issue #9344: Add os.getgrouplist().Ross Lagerwall2011-06-101-0/+11
| |
* | Issue #12196: Make os.pipe2() flags argument mandatory.Charles-François Natali2011-06-061-3/+3
| |
* | Issue #12196: Add pipe2() to the os module.Charles-François Natali2011-05-291-0/+13
| |
* | Issue #12105: Add O_CLOEXEC to the os module.Charles-François Natali2011-05-221-0/+1
| |
* | merge 3.2Benjamin Peterson2011-05-201-1/+1
|\ \ | |/
| * merge 3.1Benjamin Peterson2011-05-201-1/+1
| |\