| Commit message (Expand) | Author | Age | Files | Lines |
* | Clean up pass for the previous patches. | Guido van Rossum | 1999-03-22 | 1 | -23/+35 |
|
|
* | Jonathan Giddy writes: | Guido van Rossum | 1999-03-22 | 1 | -8/+15 |
|
|
* | Fixed the flush() method of compression objects; the test for | Andrew M. Kuchling | 1999-03-22 | 1 | -12/+29 |
|
|
* | Use an unsigned cast to avoid a warning in VC++. | Guido van Rossum | 1999-03-19 | 1 | -1/+2 |
|
|
* | Docstring fix: acosh() returns the hyperbolic arccosine, not the | Fred Drake | 1999-03-16 | 1 | -1/+1 |
|
|
* | Patch by Rob Riggs for Linux -- glibc2 has a different argument | Guido van Rossum | 1999-03-15 | 1 | -0/+24 |
|
|
* | Patch by Chris Herborth for BeOS code. | Guido van Rossum | 1999-03-09 | 1 | -14/+8 |
|
|
* | # Typo in docstring (Retrun -> Return). | Guido van Rossum | 1999-02-23 | 1 | -1/+1 |
|
|
* | Carefully check for overflow when allocating the memory for fromfile | Guido van Rossum | 1999-02-23 | 1 | -1/+8 |
|
|
* | Patch by Tadayoshi Funaba (with some changes) to be smarter about | Guido van Rossum | 1999-02-23 | 1 | -6/+12 |
|
|
* | Document *static* -- in two places! | Guido van Rossum | 1999-02-22 | 1 | -1/+4 |
|
|
* | We don't support leap seconds, so the seconds field of a time 9-tuple | Guido van Rossum | 1999-02-22 | 1 | -1/+1 |
|
|
* | In atoi(), don't use isxdigit() to test whether the last character | Guido van Rossum | 1999-02-22 | 1 | -1/+1 |
|
|
* | The docstring for ttyname(..) claims a second "mode" argument. The | Guido van Rossum | 1999-02-22 | 1 | -1/+1 |
|
|
* | When the parameter to PyInt_AsLong() has already been checked with | Fred Drake | 1999-02-17 | 1 | -2/+2 |
|
|
* | Use the portable form of initializing the ob_type field for new types. | Fred Drake | 1999-02-16 | 1 | -2/+8 |
|
|
* | The symbols P_* (for spawn*(), MS specific) should not have a leading | Guido van Rossum | 1999-02-16 | 1 | -5/+5 |
|
|
* | Fixed totally bogus conversion factors used in the Win32 version of | Guido van Rossum | 1999-02-16 | 1 | -3/+10 |
|
|
* | Got rid of the file-global PosixError. This was redundant since it | Barry Warsaw | 1999-02-09 | 1 | -8/+4 |
|
|
* | On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screws | Guido van Rossum | 1999-02-09 | 1 | -1/+1 |
|
|
* | Fix buglet in load_put -- the test for bad readline result tested the | Guido van Rossum | 1999-02-08 | 1 | -1/+1 |
|
|
* | The variable TESTPATH should be initialized to empty. | Guido van Rossum | 1999-02-08 | 1 | -1/+1 |
|
|
* | The writelines() function was never tested and contained numerous bugs | Guido van Rossum | 1999-02-08 | 1 | -4/+16 |
|
|
* | Jim Fulton: this fixes seg faults with bad pickles like "c". | Guido van Rossum | 1999-02-04 | 1 | -3/+22 |
|
|
* | Portability fix for [f]statvfs() return tuple: no longer return the | Guido van Rossum | 1999-02-03 | 1 | -12/+8 |
|
|
* | Never mind, this belongs in the PC subdirectory, | Guido van Rossum | 1999-02-02 | 1 | -71/+0 |
|
|
* | Added documentation to the docstrings for the W*() functions that take | Fred Drake | 1999-02-02 | 1 | -6/+8 |
|
|
* | Windows sound playing module, by Fredrik Lundh. | Guido van Rossum | 1999-02-02 | 1 | -0/+71 |
|
|
* | Add _P_WAIT etc. for NT. | Guido van Rossum | 1999-02-01 | 1 | -0/+12 |
|
|
* | spawnv, spawnve docstrings: added mode parameter; this is required! | Fred Drake | 1999-02-01 | 1 | -2/+4 |
|
|
* | PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString() | Barry Warsaw | 1999-02-01 | 1 | -3/+26 |
|
|
* | Oops, the patch for NeXT always replaced waitpid() with wait4() -- | Guido van Rossum | 1999-02-01 | 1 | -0/+4 |
|
|
* | setup_readline(): Added a comment about memory leak (reported by | Barry Warsaw | 1999-01-29 | 1 | -1/+5 |
|
|
* | Added missing DECREF's in the error branches when creating a compressor or | Andrew M. Kuchling | 1999-01-29 | 1 | -1/+12 |
|
|
* | PyInit_zlib(): Plug a small memory leak. Jeremy is looking into the | Barry Warsaw | 1999-01-28 | 1 | -0/+1 |
|
|
* | Document -OO; "unsafe" optimization that removes docstrings. | Guido van Rossum | 1999-01-28 | 1 | -1/+2 |
|
|
* | pcre_exec(): Andrew Kuchling's patch for pcre memory leak. | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
|
|
* | initerrno(): Nailed a not-so-tiny memory leak. The de dictionary is | Barry Warsaw | 1999-01-27 | 1 | -1/+2 |
|
|
* | Patches by William Lewis for Nextstep descendants. | Guido van Rossum | 1999-01-27 | 5 | -30/+124 |
|
|
* | expandtabs__doc__: blank line which was not terminated with \n\ caused | Barry Warsaw | 1999-01-26 | 1 | -1/+0 |
|
|
* | Add spawnv and spawnve functions for Win32 platforms. | Guido van Rossum | 1999-01-25 | 1 | -0/+178 |
|
|
* | A gift from Fredrik Lundh: fast C implementation of expandtabs(). | Guido van Rossum | 1999-01-25 | 1 | -0/+75 |
|
|
* | Make sure not to call realloc() with a NULL pointer -- call malloc() | Guido van Rossum | 1999-01-25 | 1 | -1/+4 |
|
|
* | Include myselect.h -- needed on some platforms. | Guido van Rossum | 1999-01-25 | 1 | -0/+1 |
|
|
* | Rearrange the -I flags for compiling _tkinter.c so that | Guido van Rossum | 1999-01-25 | 1 | -2/+2 |
|
|
* | Only do ttyname() when HAVE_TTYNAME is defined. | Guido van Rossum | 1999-01-25 | 1 | -0/+18 |
|
|
* | Should include "Python.h", not <Python.h> -- it's not a standard | Guido van Rossum | 1999-01-14 | 1 | -1/+1 |
|
|
* | Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh(). | Guido van Rossum | 1999-01-14 | 1 | -1/+5 |
|
|
* | Need extern decl. for fdatasync() in case it exists but isn't declared | Guido van Rossum | 1999-01-08 | 1 | -2/+2 |
|
|
* | Added fsync() and fdatasync(). Patches by Scott Cotton. Requires | Guido van Rossum | 1999-01-08 | 1 | -0/+57 |
|
|