| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 39 | -1110/+1029 |
|
|
* | Fix non-blocking connect() for Windows. Refactored the code | Guido van Rossum | 2002-06-13 | 1 | -27/+40 |
|
|
* | Major overhaul of timeout sockets: | Guido van Rossum | 2002-06-13 | 2 | -222/+60 |
|
|
* | _Py prefix is verboten for static entry points | Andrew MacIntyre | 2002-06-13 | 1 | -4/+4 |
|
|
* | work around name clash with OS/2 TCPIP routine sock_init() | Andrew MacIntyre | 2002-06-13 | 1 | -2/+2 |
|
|
* | patch #562492 - prevent duplicate lines in history | Skip Montanaro | 2002-06-11 | 1 | -2/+19 |
|
|
* | Patch #488073: AtheOS port. | Martin v. Löwis | 2002-06-11 | 1 | -1/+3 |
|
|
* | Don't accept null bytes in the key. | Guido van Rossum | 2002-06-10 | 1 | -2/+1 |
|
|
* | SF bug 563750 (Alex Martelli): posix_tmpfile(): | Guido van Rossum | 2002-06-10 | 1 | -1/+1 |
|
|
* | Move the conex_finally label up, so that the errno value is always | Guido van Rossum | 2002-06-07 | 1 | -1/+1 |
|
|
* | I decided to change the interaction between setblocking() and | Guido van Rossum | 2002-06-07 | 1 | -5/+2 |
|
|
* | Major cleanup. Renamed static methods to avoid Py prefix. Other misc | Guido van Rossum | 2002-06-07 | 1 | -296/+290 |
|
|
* | Repair a comment. | Guido van Rossum | 2002-06-07 | 1 | -1/+1 |
|
|
* | Whitespace normalization, folding long lines, uniform comment | Guido van Rossum | 2002-06-07 | 1 | -224/+229 |
|
|
* | Correct several blunders in the timeout code, mostly my own fault (for | Guido van Rossum | 2002-06-07 | 1 | -14/+12 |
|
|
* | Remove casts to PyObject * when declaration is for PyObject * | Jeremy Hylton | 2002-06-06 | 1 | -3/+3 |
|
|
* | SF patch 555085 (timeout socket implementation) by Michael Gilfix. | Guido van Rossum | 2002-06-06 | 2 | -54/+423 |
|
|
* | The insint() function is not used. Nuke it. | Guido van Rossum | 2002-06-06 | 1 | -15/+0 |
|
|
* | The tp_new implementation should initialize the errorhandler field, | Guido van Rossum | 2002-06-06 | 1 | -1/+3 |
|
|
* | Fix SF bug #557436, TclError is a str should be an Exception | Neal Norwitz | 2002-06-04 | 1 | -1/+1 |
|
|
* | Remove unused static function | Neal Norwitz | 2002-05-31 | 1 | -19/+0 |
|
|
* | SF #558432: Prevent Annoying ' ' from readline (Holker Krekel). | Guido van Rossum | 2002-05-30 | 1 | -0/+1 |
|
|
* | The logreader object did not always refill the input buffer correctly | Neil Schemenauer | 2002-05-29 | 1 | -105/+56 |
|
|
* | Issue an explicit error when we can't find an appropriate type for | Guido van Rossum | 2002-05-29 | 1 | -0/+2 |
|
|
* | This is patch | Michael W. Hudson | 2002-05-29 | 1 | -7/+3 |
|
|
* | This is patch | Michael W. Hudson | 2002-05-27 | 1 | -0/+171 |
|
|
* | Disambiguate the grammar for backtick. | Guido van Rossum | 2002-05-24 | 1 | -1/+13 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-05-23 | 1 | -7/+7 |
|
|
* | Add IS_TRACKED and IS_MOVED macros. This makes the logic a little more clear. | Neil Schemenauer | 2002-05-21 | 1 | -7/+10 |
|
|
* | array_tounicode isn't defined in --disable-unicode builds... | Michael W. Hudson | 2002-05-13 | 1 | -0/+4 |
|
|
* | Added degrees() and radians() to mathmodule. Closes patch 552452 and | Raymond Hettinger | 2002-05-13 | 1 | -0/+27 |
|
|
* | Patch #551011: Fix compilation problems with Cygwin. | Martin v. Löwis | 2002-05-08 | 1 | -1/+1 |
|
|
* | Rename posix_WCONTINUED to posix_WIFCONTINUED, call WIFCONTINUED inside, | Martin v. Löwis | 2002-05-04 | 1 | -2/+5 |
|
|
* | Move all data for a single generation into a structure. The set of | Neil Schemenauer | 2002-05-04 | 1 | -73/+97 |
|
|
* | Indicate delayed initialization of slots. Suggested by tim.one. | Martin v. Löwis | 2002-05-02 | 1 | -3/+5 |
|
|
* | Patch #551009: Initialize array type dynamically. | Martin v. Löwis | 2002-05-02 | 1 | -3/+6 |
|
|
* | Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907. | Martin v. Löwis | 2002-05-02 | 1 | -1/+1 |
|
|
* | Pickler_clear_memo(): convert to METH_NOARGS. | Fred Drake | 2002-05-01 | 1 | -5/+2 |
|
|
* | See discussion at SF bug 547537. | Guido van Rossum | 2002-04-29 | 1 | -1/+1 |
|
|
* | _PyObject_GC_New: Could call PyObject_INIT with a NULL 1st argument. | Tim Peters | 2002-04-28 | 1 | -2/+6 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 9 | -55/+23 |
|
|
* | Check for overflow errors in setrlimit(), | Jeremy Hylton | 2002-04-23 | 1 | -1/+10 |
|
|
* | WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. | Fred Drake | 2002-04-23 | 1 | -11/+75 |
|
|
* | SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) | Anthony Baxter | 2002-04-23 | 1 | -3/+3 |
|
|
* | #546156, Remove load_false()/load_true(), they are not used | Neal Norwitz | 2002-04-21 | 1 | -14/+0 |
|
|
* | #544265, Remove warnings for passing const to free() | Neal Norwitz | 2002-04-21 | 1 | -1/+1 |
|
|
* | #546163, fix link problem on Solaris 8 for makedev when using mknod | Neal Norwitz | 2002-04-20 | 1 | -0/+3 |
|
|
* | Forward port of patch # 500311: Work around for buggy https servers. | Martin v. Löwis | 2002-04-20 | 1 | -24/+72 |
|
|
* | Patch #546194: Check constants individually. Fixes 534143 on OpenBSD. | Martin v. Löwis | 2002-04-19 | 1 | -2/+19 |
|
|
* | #546155, remove posix_int() it is not used | Neal Norwitz | 2002-04-19 | 1 | -16/+0 |
|
|