| Commit message (Expand) | Author | Age | Files | Lines |
* | /F revealed that ShellExecute() only requires shellapi.h, not the | Tim Peters | 2002-07-15 | 1 | -1/+2 |
|
|
* | Fix bug 231273 - [windows] os.popen doens't kill subprocess when interrupted | Mark Hammond | 2002-07-14 | 1 | -1/+1 |
|
|
* | WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few | Tim Peters | 2002-07-14 | 1 | -1/+1 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 1 | -91/+22 |
|
|
* | Clean up docstrings: | Fred Drake | 2002-06-20 | 1 | -110/+105 |
|
|
* | Corect speling and add \n\ to line ends in new docstring for access(). | Guido van Rossum | 2002-06-18 | 1 | -5/+5 |
|
|
* | Clarified documentation for os.access(). | Fred Drake | 2002-06-18 | 1 | -1/+5 |
|
|
* | Use new PyDoc_STRVAR macro | Neal Norwitz | 2002-06-13 | 1 | -2/+2 |
|
|
* | Patch #568235: Add posix.setpgid. | Martin v. Löwis | 2002-06-13 | 1 | -0/+22 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -222/+228 |
|
|
* | SF bug 563750 (Alex Martelli): posix_tmpfile(): | Guido van Rossum | 2002-06-10 | 1 | -1/+1 |
|
|
* | Rename posix_WCONTINUED to posix_WIFCONTINUED, call WIFCONTINUED inside, | Martin v. Löwis | 2002-05-04 | 1 | -2/+5 |
|
|
* | WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. | Fred Drake | 2002-04-23 | 1 | -11/+75 |
|
|
* | #546163, fix link problem on Solaris 8 for makedev when using mknod | Neal Norwitz | 2002-04-20 | 1 | -0/+3 |
|
|
* | #546155, remove posix_int() it is not used | Neal Norwitz | 2002-04-19 | 1 | -16/+0 |
|
|
* | posix_fildes(): New helper: run a function that takes a file descriptor | Fred Drake | 2002-04-15 | 1 | -52/+71 |
|
|
* | Patch #543447: Add posix.mknod. | Martin v. Löwis | 2002-04-14 | 1 | -4/+40 |
|
|
* | Fix bugs: | Mark Hammond | 2002-04-03 | 1 | -1/+7 |
|
|
* | Handle os.listdir("") case correctly on Windows. Closes bug 500705. | Neil Schemenauer | 2002-03-22 | 1 | -4/+5 |
|
|
* | Update docstrings to use te attribute names of the new structures returned | Fred Drake | 2002-03-12 | 1 | -2/+4 |
|
|
* | Python no longer compiled on Windows, due to #include file confusion | Tim Peters | 2002-03-03 | 1 | -4/+5 |
|
|
* | OS/2 EMX port changes (Modules part of patch #450267): | Andrew MacIntyre | 2002-03-03 | 1 | -17/+702 |
|
|
* | Patch #511193: Implement killpg in posixmodule. | Martin v. Löwis | 2002-02-16 | 1 | -0/+21 |
|
|
* | Got rid of a few more NeXT ifdefs. The last, I think. | Jack Jansen | 2002-02-01 | 1 | -92/+0 |
|
|
* | Implement os.waitpid() for Windows, in a way that's compatible with Linux | Tim Peters | 2002-02-01 | 1 | -2/+28 |
|
|
* | Expose more MS WIndows constants usable w/ low-level os.open(). | Tim Peters | 2002-01-30 | 1 | -102/+125 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -9/+0 |
|
|
* | Due to a cut-and-paste error, the type object exported under the name | Guido van Rossum | 2001-12-27 | 1 | -1/+1 |
|
|
* | SF bug #495021: Crash calling os.stat with a trailing backslash | Tim Peters | 2001-12-19 | 1 | -14/+20 |
|
|
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -0/+2 |
|
|
* | SF patch #489173: Make os.spawnv not block the interpreter, from | Tim Peters | 2001-12-07 | 1 | -3/+10 |
|
|
* | posix_execve(), posix_spawnve(), posix_putenv(): | Tim Peters | 2001-12-03 | 1 | -6/+14 |
|
|
* | More sprintf -> PyOS_snprintf. | Tim Peters | 2001-11-28 | 1 | -3/+3 |
|
|
* | Repair a botched PyOS_snprintf conversion. | Tim Peters | 2001-11-28 | 1 | -1/+1 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 1 | -3/+5 |
|
|
* | Fixes for possible buffer overflows in sprintf() usages. | Marc-André Lemburg | 2001-11-28 | 1 | -1/+1 |
|
|
* | Correct typo. Fixes #484611. | Martin v. Löwis | 2001-11-24 | 1 | -1/+1 |
|
|
* | Patch #474169: Move fdopen calls out of critical section. | Martin v. Löwis | 2001-11-02 | 1 | -4/+8 |
|
|
* | SF patch #460805 by Chris Gonnerman: Support for unsetenv() | Guido van Rossum | 2001-10-19 | 1 | -0/+34 |
|
|
* | Expose O_LARGEFILE, O_DIRECT, O_DIRECTORY, and O_NOFOLLOW. | Martin v. Löwis | 2001-10-18 | 1 | -0/+17 |
|
|
* | Don't leave bare newlines in long strings -- VC doesn't like that. | Guido van Rossum | 2001-10-18 | 1 | -3/+3 |
|
|
* | SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. | Guido van Rossum | 2001-10-18 | 1 | -68/+178 |
|
|
* | Shut up warnings for setgroups() on Linux -- you have to #include | Guido van Rossum | 2001-10-18 | 1 | -0/+5 |
|
|
* | Expose setgroups. Fixes feature request #468116. | Martin v. Löwis | 2001-10-18 | 1 | -0/+48 |
|
|
* | Add chroot call. Implements feature #459267. | Martin v. Löwis | 2001-10-04 | 1 | -0/+15 |
|
|
* | Enable large file support on Win32 systems. | Tim Peters | 2001-09-06 | 1 | -3/+3 |
|
|
* | SF bug [#456252] Python should never stomp on [u]intptr_t. | Tim Peters | 2001-08-29 | 1 | -4/+4 |
|
|
* | SF patch [ #455137 ] Makes popen work with COMMAND.COM on WNT, from | Tim Peters | 2001-08-27 | 1 | -9/+22 |
|
|
* | added warnings about security risk of using tmpnam and tempnam | Skip Montanaro | 2001-08-18 | 1 | -0/+10 |
|
|
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 1 | -1/+1 |
|
|