| Commit message (Expand) | Author | Age | Files | Lines |
* | Jim Fulton writes: | Guido van Rossum | 1999-04-19 | 1 | -13/+41 |
|
|
* | Patch from Tim Peters to repare a the problem that tracebacks are off | Guido van Rossum | 1999-04-19 | 1 | -2/+9 |
|
|
* | Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically | Guido van Rossum | 1999-04-19 | 1 | -0/+8 |
|
|
* | Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux. | Guido van Rossum | 1999-04-19 | 1 | -1/+1 |
|
|
* | Put back __osf__ support for gethostbyname_r(); the real bug was that | Guido van Rossum | 1999-04-13 | 1 | -1/+5 |
|
|
* | Fix accidentally reversed NULL test in load_mark(). Suggested by | Guido van Rossum | 1999-04-12 | 1 | -1/+1 |
|
|
* | 'clean' target should remove hassignal. | Guido van Rossum | 1999-04-12 | 1 | -1/+2 |
|
|
* | Cast added by Jack Jansen (for Mac port). | Guido van Rossum | 1999-04-12 | 1 | -1/+2 |
|
|
* | casts for picky compilers. | Guido van Rossum | 1999-04-10 | 2 | -2/+3 |
|
|
* | 3-arg gethostbyname_r doesn't really work on OSF/1. | Guido van Rossum | 1999-04-10 | 1 | -1/+1 |
|
|
* | Patch by Andrew Kuchling to unflush() (flush() for deflating). | Guido van Rossum | 1999-04-07 | 1 | -4/+8 |
|
|
* | Add extern decl for fsync() for SunOS 4.x. | Guido van Rossum | 1999-04-07 | 1 | -0/+1 |
|
|
* | Jonathan Giddy notes, and Chris Lawrence agrees, that some comments on | Guido van Rossum | 1999-04-05 | 1 | -3/+3 |
|
|
* | Protection against picling to/from closed (real) file. | Guido van Rossum | 1999-03-29 | 1 | -0/+8 |
|
|
* | #$@%! Forgot to remove a #error directive used for testing. Sorry. | Guido van Rossum | 1999-03-29 | 1 | -1/+0 |
|
|
* | Chris Lawrence writes: | Guido van Rossum | 1999-03-29 | 1 | -18/+28 |
|
|
* | Avoid warnings from AIX compiler. Reported by Vladimir (AIX is my | Guido van Rossum | 1999-03-29 | 1 | -3/+3 |
|
|
* | Add an .unused_data attribute to decompressor objects. If .unused_data | Andrew M. Kuchling | 1999-03-25 | 1 | -0/+22 |
|
|
* | Added Greg Stein and Andrew Kuchling's sha module. | Guido van Rossum | 1999-03-24 | 2 | -1/+610 |
|
|
* | Implement two suggestions by Jonathan Giddy: (1) in AIX, clear the | Guido van Rossum | 1999-03-24 | 1 | -0/+19 |
|
|
* | Vladimir Marangozov implements the AIX 3-arg gethostbyname_r code. | Guido van Rossum | 1999-03-24 | 1 | -14/+32 |
|
|
* | Add $(EXE) to various occurrences of python so it will work on Cygwin | Guido van Rossum | 1999-03-23 | 1 | -2/+2 |
|
|
* | 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 |
|
|