| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix nits found by Tools\scripts\texcheck.py | Raymond Hettinger | 2003-05-16 | 1 | -2/+2 |
| | | |||||
| * | fsync(): Implemented for Windows, via calling MS _commit. This counts | Tim Peters | 2003-04-23 | 1 | -2/+9 |
| | | | | | | | as "a bug" because there's no other way in core Python to ensure that bytes written are actually on disk. At least ZODB wants this guarantee, for robustness against crashes. | ||||
| * | - explain what a UNC path is in the makedirs() description, since | Fred Drake | 2003-03-20 | 1 | -2/+5 |
| | | | | | they're actually mentioned there | ||||
| * | backporting Fred's doc fix. | Skip Montanaro | 2003-02-14 | 1 | -2/+3 |
| | | |||||
| * | add missing description of os.extsep | Skip Montanaro | 2003-02-14 | 1 | -0/+5 |
| | | |||||
| * | Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X | Neal Norwitz | 2003-02-07 | 1 | -1/+7 |
| | | | | | Even with the extra work to cleanup the env, *BSD still leaks. Add a note. | ||||
| * | Typo: "dead lock" --> "deadlock" | Fred Drake | 2002-12-06 | 1 | -1/+1 |
| | | |||||
| * | Clarified documentation of tempnam(). | Fred Drake | 2002-11-12 | 1 | -0/+4 |
| | | | | | Closes SF bug #635656. | ||||
| * | backport gvanrossum's checkin of | Michael W. Hudson | 2002-08-23 | 1 | -1/+1 |
| | | | | | | | | | | | | revision 1.86 of libos.tex SF bug 563750 (Alex Martelli): posix_tmpfile(): The file returned by tmpfile() has mode w+b, so use that in the call to PyFile_FromFile(). Bugfix candidate. | ||||
| * | Documented os.fsync and os.fdatasync. Closes SF bug 584695. | Raymond Hettinger | 2002-08-07 | 1 | -0/+11 |
| | | |||||
| * | Add description of the deadlock problem with child processes and pipes, and | Fred Drake | 2002-06-18 | 1 | -0/+5 |
| | | | | | | hints about how to work around it. Closes SF bug #530637. | ||||
| * | Clarified documentation for os.access(). | Fred Drake | 2002-06-18 | 1 | -5/+7 |
| | | | | | | Based on patch contributed by Sean Reifschneider. Closes SF patch #570618. | ||||
| * | Explain what os.read() returns at end of file. | Fred Drake | 2002-05-01 | 1 | -1/+3 |
| | | | | | This closes SF bug #550409. | ||||
| * | Slightly expand and clarify the differences between getegid(), getgid(), | Fred Drake | 2002-04-26 | 1 | -6/+9 |
| | | | | | | getpgrp(), and setpgid(). This closes SF bug #547939. | ||||
| * | Explain that os.spawn*() return the process handle on Windows. | Fred Drake | 2002-04-01 | 1 | -1/+2 |
| | | | | | This closes SF bug #537582. | ||||
| * | Add a reference to the signal module to the os.kill() description. | Fred Drake | 2001-12-21 | 1 | -1/+3 |
| | | | | | This closes SF bug #495609. | ||||
| * | Fix the availability statement for the spawn*() functions to reflect the | Fred Drake | 2001-12-20 | 1 | -2/+3 |
| | | | | | | actual availability on Windows. This fixes SF bug #495191. | ||||
| * | s/it/if/ in descriptions of spawn mode argument. | Tim Peters | 2001-12-06 | 1 | -1/+1 |
| | | |||||
| * | Various cleanups & markup fixes, mostly relating to the stat and statvfs | Fred Drake | 2001-11-29 | 1 | -38/+77 |
| | | | | | result object changes. | ||||
| * | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 1 | -92/+92 |
| | | | | | | | | | parameters (like \UNIX) are commonly entered using an empty group to separate the markup from a following inter-word space; this is not needed when the next character is punctuation, or the markup is the last thing in the enclosing group. These cases were marked inconsistently; the empty group is now *only* used when needed. | ||||
| * | Straighten out the exec*() function descriptions a bit, and clarify a few | Fred Drake | 2001-10-18 | 1 | -65/+68 |
| | | | | | points in the spawn*() description. | ||||
| * | Elaborate on types and meaning of the setgroups arguments. | Martin v. Löwis | 2001-10-18 | 1 | -2/+4 |
| | | |||||
| * | Expose setgroups. Fixes feature request #468116. | Martin v. Löwis | 2001-10-18 | 1 | -0/+7 |
| | | |||||
| * | Improve the documentation for the os.P_* constants used with the os.spawn*() | Fred Drake | 2001-10-09 | 1 | -9/+29 |
| | | | | | | | | | | | functions to include information about how they affect the operation of those functions when used as the "mode" parameter. This closes SF bug #468384. Added warnings to the os.tempnam() and os.tmpnam() functions regarding their security problem. These warning mirror the warnings added to the runtime by Skip Montanaro. | ||||
| * | Add chroot call. Implements feature #459267. | Martin v. Löwis | 2001-10-04 | 1 | -0/+6 |
| | | |||||
| * | Added note about non-support of UNC paths on Windows. | Fred Drake | 2001-09-28 | 1 | -1/+2 |
| | | | | | This fixes SF bug #465447. | ||||
| * | Document clearly that the only way to retrieve the return code from the | Fred Drake | 2001-09-11 | 1 | -0/+6 |
| | | | | | | child processes is to use the Popen3 and Popen4 classes. This fixes SF bug #460512. | ||||
| * | Re-write the description of the os.spawn*() functions, and cover the | Fred Drake | 2001-08-16 | 1 | -17/+51 |
| | | | | | | | | whole family instead of just two. This closes SF bug #451630. | ||||
| * | Typo: Added missing "if". | Fred Drake | 2001-07-23 | 1 | -1/+1 |
| | | | | | This is part of SF patch #442788. | ||||
| * | Update the availability information for os.tempnam(), os.tmpfile(), and | Fred Drake | 2001-07-17 | 1 | -1/+3 |
| | | | | | os.tmpnam(). | ||||
| * | Minor changes to match the style guide. | Fred Drake | 2001-07-14 | 1 | -34/+38 |
| | | |||||
| * | Fix up a few style nits -- avoid "e.g." and "i.e." -- these make | Fred Drake | 2001-07-06 | 1 | -23/+24 |
| | | | | | | translation more difficult, as well as reading the English more difficult for non-native speakers. | ||||
| * | Add the appropriate availability annotations for the popen*() family of | Fred Drake | 2001-06-11 | 1 | -4/+7 |
| | | | | | | | | functions -- these are not available on traditional Mac OS platforms. Corrected the version annotations for the spawn*() functions and related constants; these were added in Python 1.6, not 1.5.2. | ||||
| * | Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). Added | Fred Drake | 2001-06-11 | 1 | -3/+11 |
| | | | | | | | | a reference to these functions and popen() from the "Process Management" section. Based on a suggestion from comp.lang.python. | ||||
| * | is -> if in rename description | Skip Montanaro | 2001-06-04 | 1 | -1/+1 |
| | | |||||
| * | Document os.getenv(). | Fred Drake | 2001-05-31 | 1 | -0/+7 |
| | | | | | This closes SF bug #429059. | ||||
| * | readlink() description: Added note that the return value may be either | Fred Drake | 2001-05-29 | 1 | -5/+20 |
| | | | | | | | | | | | absolute or relative. remove(), rename() descriptions: Give more information about the cross- platform behavior of these functions, so single-platform developers can be aware of the potential issues when writing portable code. This closes SF patch #426598. | ||||
| * | Capitalize first letter of an explanation for a \versionchanged | Fred Drake | 2000-10-19 | 1 | -1/+1 |
| | | | | | annotation. | ||||
| * | For os.stat() & friends, note that the time fields are returned as | Fred Drake | 2000-10-14 | 1 | -1/+3 |
| | | | | | floating-point values. | ||||
| * | Added \versionchanged comment to os.popen() noting that it was unreliable | Fred Drake | 2000-10-04 | 1 | -0/+6 |
| | | | | | | | | in earlier versions of Python; this is useful information for people interested in writing code that is portable across Python versions. Suggested by Peter Funk <pf@artcom-gmbh.de>. | ||||
| * | Remove old note that os.popen() on Windows is unreliable; this is no | Fred Drake | 2000-10-03 | 1 | -3/+1 |
| | | | | | longer true. | ||||
| * | os.startfile() documentation, based on text from Tim Peters. | Fred Drake | 2000-09-29 | 1 | -0/+18 |
| | | |||||
| * | Updated documentation relating to the various flavors of popen[234]() | Fred Drake | 2000-09-28 | 1 | -0/+30 |
| | | | | | for Windows & Unix. | ||||
| * | Added explanation of the use of the first program argument passed to the | Fred Drake | 2000-09-23 | 1 | -0/+9 |
| | | | | | exec*() family of functions. | ||||
| * | O_BINARY: Documented this constant; omission noted by David Ascher. | Fred Drake | 2000-08-11 | 1 | -1/+8 |
| | | | | | | access(): Corrected availability statement; error pointed out by Tim Peters. | ||||
| * | added doc for isatty() | Skip Montanaro | 2000-07-19 | 1 | -0/+6 |
| | | |||||
| * | Rob W. W. Hooft's spelling fixes for the Library Reference. I hope | Thomas Wouters | 2000-07-16 | 1 | -3/+3 |
| | | | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem. | ||||
| * | From Sam Rushing's Medusa, via SF patch #100858: add & document | Andrew M. Kuchling | 2000-07-13 | 1 | -0/+20 |
| | | | | | os.seteuid(), os.setegid(), os.setreuid(), os.setregid(). | ||||
| * | Update version numbering from 1.6 to 2.0. | Fred Drake | 2000-06-30 | 1 | -1/+1 |
| | | |||||
| * | Thomas Wouters <thomas@xs4all.net>: | Fred Drake | 2000-06-28 | 1 | -0/+18 |
| | | | | | Documentation updates related to the addition of openpty() and forkpty(). | ||||
