| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | In dealloc(), only close the socket if fd != -1. | Guido van Rossum | 2000-04-10 | 1 | -1/+2 |
|
|
* | Windows: Since we're not using ZLIB.DLL any more, don't define ZLIB_DLL. | Guido van Rossum | 2000-04-06 | 1 | -3/+0 |
|
|
* | Mark Hammond <mhammond@skippinet.com.au>: | Fred Drake | 2000-04-05 | 1 | -6/+2 |
|
|
* | Patch from Hrvoje Niksic <hniksic@iskon.hr>: | Fred Drake | 2000-04-04 | 1 | -8/+8 |
|
|
* | Add warning that multi-arg connect() etc. are deprecated. | Guido van Rossum | 2000-04-04 | 1 | -1/+1 |
|
|
* | Put back multi-arg capability on connect/connect_ex/bind, for | Guido van Rossum | 2000-04-04 | 1 | -21/+15 |
|
|
* | Marc-Andre Lemburg: The large unicode database table is broken in | Guido van Rossum | 2000-03-31 | 3 | -10/+118 |
|
|
* | Add '#include <netinet/tcp.h>' | Andrew M. Kuchling | 2000-03-31 | 1 | -0/+1 |
|
|
* | This module's name should be linuxaudio*dev*.c | Guido van Rossum | 2000-03-31 | 2 | -2/+1 |
|
|
* | Added some clarifications to pyexpat. | Guido van Rossum | 2000-03-31 | 1 | -0/+13 |
|
|
* | Make it compile on Windows. | Guido van Rossum | 2000-03-31 | 1 | -2/+4 |
|
|
* | Added Python interface to Expat XML parser. | Andrew M. Kuchling | 2000-03-31 | 2 | -0/+872 |
|
|
* | Removed three unused variables from the Windows code. | Guido van Rossum | 2000-03-31 | 1 | -3/+0 |
|
|
* | Added the _sre module. It is always on. | Guido van Rossum | 2000-03-31 | 1 | -0/+1 |
|
|
* | Adding Fredrik Lundh's _sre.c module and its header files. | Guido van Rossum | 2000-03-31 | 3 | -0/+1518 |
|
|
* | Add back an obscure "feature" to the Obj version of Tkapp_Call(): a | Guido van Rossum | 2000-03-31 | 1 | -0/+4 |
|
|
* | Sigh. On Windows, (mode_t)i fails. Assume that there's a prototype | Guido van Rossum | 2000-03-31 | 1 | -1/+1 |
|
|
* | Hacked for Win32 by Mark Hammond. | Guido van Rossum | 2000-03-31 | 1 | -542/+569 |
|
|
* | Don't use the object call interface in Tk 8.0 -- the EvalObj* API | Guido van Rossum | 2000-03-31 | 1 | -41/+164 |
|
|
* | Oops, the previous patch contained a bug in chmod. Fixed now. | Guido van Rossum | 2000-03-31 | 1 | -2/+2 |
|
|
* | Two robustness patches: | Guido van Rossum | 2000-03-31 | 1 | -5/+12 |
|
|
* | Add linuxaudio module. | Guido van Rossum | 2000-03-30 | 1 | -0/+5 |
|
|
* | Audio module for Linux, contributed by Peter Bosch. | Guido van Rossum | 2000-03-30 | 1 | -0/+467 |
|
|
* | Added mmap module -- map a view of a file into memory on Win32 and Unix. | Andrew M. Kuchling | 2000-03-30 | 2 | -1/+849 |
|
|
* | The Tcl_Obj patch discussed on the patches list. | Guido van Rossum | 2000-03-29 | 1 | -82/+77 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-03-28 | 1 | -0/+46 |
|
|
* | Patch by Neil Schemenauer to remove support for Tcl/Tk versions before | Guido van Rossum | 2000-03-28 | 1 | -111/+21 |
|
|
* | Add a call to Tcl_FindExecutable(). This was inspired by a patch by | Guido van Rossum | 2000-03-27 | 1 | -0/+6 |
|
|
* | Fix all routines to use PyArg_ParseTuple(), and add ":name" to the | Guido van Rossum | 2000-03-24 | 1 | -58/+71 |
|
|
* | Fix probable bug; if errno == EINTR, floatsleep() doesn't break out of | Andrew M. Kuchling | 2000-03-24 | 1 | -1/+1 |
|
|
* | On 17-Mar-2000, Marc-Andre Lemburg said: | Barry Warsaw | 2000-03-20 | 1 | -1/+1 |
|
|
* | Fix bogus error reporting on strptime: let PyArg_ParseTuple set exception. | Jeremy Hylton | 2000-03-14 | 1 | -5/+4 |
|
|
* | Marc-Andre Lemburg: add new Unicode-related files. | Guido van Rossum | 2000-03-10 | 1 | -0/+3 |
|
|
* | Marc-Andre Lemburg: Add _codecs and unicodedata modules. | Guido van Rossum | 2000-03-10 | 1 | -0/+4 |
|
|
* | Marc-Andre Lemburg: support pickling Unicode objects, both in text | Guido van Rossum | 2000-03-10 | 1 | -0/+149 |
|
|
* | Module unicodedata -- Provides access to the Unicode 3.0 data base. | Guido van Rossum | 2000-03-10 | 1 | -0/+269 |
|
|
* | Internal module _codecs -- Provides access to the codec registry and | Guido van Rossum | 2000-03-10 | 1 | -0/+529 |
|
|
* | Marc-Andre-Lemburg: The Unicode Database. | Guido van Rossum | 2000-03-10 | 2 | -0/+65663 |
|
|
* | Fixed inet_ntoa() docstring. | Fred Drake | 2000-03-07 | 1 | -1/+1 |
|
|
* | Second attempt to fix the ctermid_r/tmpnam_r warnings: define USE_CTERMID_R | Greg Ward | 2000-03-01 | 1 | -3/+13 |
|
|
* | Fix compiler warning: only use "_r" form of 'ctermid()' and 'tmpnam()' when | Greg Ward | 2000-03-01 | 1 | -2/+2 |
|
|
* | Patch by Fred Gansevles (the module's original author). | Guido van Rossum | 2000-02-29 | 2 | -28/+58 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 31 | -231/+231 |
|
|
* | Better fix for mpzmodule problem reported by Peter Funk: just use | Andrew M. Kuchling | 2000-02-25 | 1 | -6/+2 |
|
|
* | Delete references to _SC_AIO_LIST_MAX; it appears that that symbol was | Guido van Rossum | 2000-02-25 | 1 | -3/+0 |
|
|
* | Peter Funk: | Guido van Rossum | 2000-02-24 | 1 | -0/+5 |
|
|
* | What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. | Fred Drake | 2000-02-21 | 1 | -2/+1 |
|
|
* | Patch from Vladimir Marangozov <marangoz@python.inrialpes.fr> | Andrew M. Kuchling | 2000-02-18 | 1 | -6/+6 |
|
|
* | Patch from Vladimir Marangozov <marangoz@python.inrialpes.fr>: | Andrew M. Kuchling | 2000-02-18 | 1 | -4/+2 |
|
|
* | Patch by Jim Ahlstrom to add crc32, a useful checksum function | Guido van Rossum | 2000-02-16 | 1 | -0/+141 |
|
|