| Commit message (Expand) | Author | Age | Files | Lines |
* | Document killpg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+8 |
|
|
* | Patch #657889: Implement posix.getloadavg. | Martin v. Löwis | 2002-12-27 | 1 | -0/+8 |
|
|
* | Typo: "dead lock" --> "deadlock" | Fred Drake | 2002-12-06 | 1 | -1/+1 |
|
|
* | Clarified documentation of tempnam(). | Fred Drake | 2002-11-12 | 1 | -0/+4 |
|
|
* | Minor markup adjustments. | Fred Drake | 2002-11-07 | 1 | -2/+2 |
|
|
* | Document the changed fdopen behaviour. | Thomas Heller | 2002-11-07 | 1 | -0/+4 |
|
|
* | Add PyStructSequence_UnnamedField. Add stat_float_times. | Martin v. Löwis | 2002-10-16 | 1 | -3/+30 |
|
|
* | Remove mentionings of DOS. | Martin v. Löwis | 2002-10-10 | 1 | -4/+4 |
|
|
* | Patch #569139: Implementation of major, minor and makedev. | Martin v. Löwis | 2002-10-10 | 1 | -6/+25 |
|
|
* | Document patch #594001. | Martin v. Löwis | 2002-10-05 | 1 | -0/+9 |
|
|
* | Always generate floats for stat_result; fix configure test. | Martin v. Löwis | 2002-09-09 | 1 | -6/+5 |
|
|
* | Patch #606592: Subsecond timestamps in stat_result. | Martin v. Löwis | 2002-09-09 | 1 | -0/+3 |
|
|
* | Documented os.fsync and os.fdatasync. Closes SF bug 584695. | Raymond Hettinger | 2002-08-07 | 1 | -0/+11 |
|
|
* | Patch #573770: Implement lchown. | Martin v. Löwis | 2002-07-28 | 1 | -0/+7 |
|
|
* | Flesh out description of getlogin() and recommend against using it. | Jeremy Hylton | 2002-07-24 | 1 | -2/+3 |
|
|
* | Attempt to clarify removedirs(). | Fred Drake | 2002-07-02 | 1 | -1/+1 |
|
|
* | Add description of the deadlock problem with child processes and pipes, and | Fred Drake | 2002-06-18 | 1 | -0/+5 |
|
|
* | Clarified documentation for os.access(). | Fred Drake | 2002-06-18 | 1 | -5/+7 |
|
|
* | Add "version added" for getpgid | Neal Norwitz | 2002-06-13 | 1 | -0/+1 |
|
|
* | Patch #568235: Add posix.setpgid. | Martin v. Löwis | 2002-06-13 | 1 | -0/+6 |
|
|
* | SF bug 563750 (Alex Martelli): posix_tmpfile(): | Guido van Rossum | 2002-06-10 | 1 | -1/+1 |
|
|
* | Fix markup error that suppressed space. | Fred Drake | 2002-05-10 | 1 | -1/+1 |
|
|
* | Explain what os.read() returns at end of file. | Fred Drake | 2002-05-01 | 1 | -1/+3 |
|
|
* | Slightly expand and clarify the differences between getegid(), getgid(), | Fred Drake | 2002-04-26 | 1 | -6/+9 |
|
|
* | WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. | Fred Drake | 2002-04-23 | 1 | -6/+38 |
|
|
* | Be consistent in presenting the signatures. | Fred Drake | 2002-04-15 | 1 | -1/+1 |
|
|
* | Add docs for os.fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+9 |
|
|
* | Patch #543447: Add posix.mknod. | Martin v. Löwis | 2002-04-14 | 1 | -0/+11 |
|
|
* | Explain that os.spawn*() return the process handle on Windows. | Fred Drake | 2002-04-01 | 1 | -3/+5 |
|
|
* | Implement os.waitpid() for Windows, in a way that's compatible with Linux | Tim Peters | 2002-02-01 | 1 | -6/+21 |
|
|
* | Add new constants usable with os.popen() on Windows. | Tim Peters | 2002-01-30 | 1 | -0/+11 |
|
|
* | Add a reference to the signal module to the os.kill() description. | Fred Drake | 2001-12-21 | 1 | -1/+3 |
|
|
* | Fix the availability statement for the spawn*() functions to reflect the | Fred Drake | 2001-12-20 | 1 | -2/+3 |
|
|
* | 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 |
|
|
* | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 1 | -92/+92 |
|
|
* | Straighten out the exec*() function descriptions a bit, and clarify a few | Fred Drake | 2001-10-18 | 1 | -65/+68 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Document clearly that the only way to retrieve the return code from the | Fred Drake | 2001-09-11 | 1 | -0/+6 |
|
|
* | Re-write the description of the os.spawn*() functions, and cover the | Fred Drake | 2001-08-16 | 1 | -17/+51 |
|
|
* | Typo: Added missing "if". | Fred Drake | 2001-07-23 | 1 | -1/+1 |
|
|
* | Update the availability information for os.tempnam(), os.tmpfile(), and | Fred Drake | 2001-07-17 | 1 | -1/+3 |
|
|
* | 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 |
|
|
* | Add the appropriate availability annotations for the popen*() family of | Fred Drake | 2001-06-11 | 1 | -4/+7 |
|
|
* | Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). Added | Fred Drake | 2001-06-11 | 1 | -3/+11 |
|
|