| Commit message (Expand) | Author | Age | Files | Lines |
* | Add additional information on exceptions from time.mktime() and related to | Fred Drake | 2001-10-29 | 1 | -2/+7 |
|
|
* | More refcount information. | Fred Drake | 2001-10-29 | 1 | -0/+40 |
|
|
* | Ignore all *.tex files in the typesetting output directories since there are | Fred Drake | 2001-10-29 | 2 | -2/+2 |
|
|
* | Make sure we generate versions of each file in the Python/C API manual with | Fred Drake | 2001-10-29 | 2 | -3/+52 |
|
|
* | Use connect_ex() instead of connect(). | Jeremy Hylton | 2001-10-29 | 1 | -12/+9 |
|
|
* | Fix for SF bug 453099 -- select not defensive | Jeremy Hylton | 2001-10-29 | 1 | -5/+16 |
|
|
* | Fix some markup errors noted by MH | Andrew M. Kuchling | 2001-10-29 | 1 | -5/+5 |
|
|
* | When overriding __str__ or __repr__, set the tp_print slot to NULL. | Guido van Rossum | 2001-10-29 | 1 | -0/+2 |
|
|
* | more loading from cfg files | Steven M. Gava | 2001-10-29 | 1 | -17/+61 |
|
|
* | more of config dialog reading from files | Steven M. Gava | 2001-10-29 | 4 | -38/+82 |
|
|
* | Use sendall() in the stream test instead of send(). | Guido van Rossum | 2001-10-29 | 1 | -1/+1 |
|
|
* | Test sendall(). | Guido van Rossum | 2001-10-29 | 1 | -1/+1 |
|
|
* | Add 'sendall' to list of socket methods. | Guido van Rossum | 2001-10-29 | 1 | -1/+1 |
|
|
* | added finditer sanity check | Fredrik Lundh | 2001-10-28 | 2 | -3/+13 |
|
|
* | Oops. In the tp_name field, the name should be "_socket.socket", not | Guido van Rossum | 2001-10-28 | 1 | -2/+2 |
|
|
* | PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() | Fred Drake | 2001-10-28 | 4 | -23/+23 |
|
|
* | News about the socket type and the HP-UX port. | Guido van Rossum | 2001-10-27 | 1 | -1/+8 |
|
|
* | Made SocketType and socket the same thing: a subclassable type whose | Guido van Rossum | 2001-10-27 | 1 | -119/+167 |
|
|
* | SF patch #475657 (Dietmar Schwertberger) | Guido van Rossum | 2001-10-27 | 3 | -9/+14 |
|
|
* | SF bug #475327: type() produces incorrect error msg | Tim Peters | 2001-10-27 | 2 | -6/+22 |
|
|
* | dictionary() constructor: | Tim Peters | 2001-10-27 | 2 | -11/+9 |
|
|
* | vgetargskeywords() | Tim Peters | 2001-10-27 | 1 | -16/+17 |
|
|
* | vgetargskeywords: Now that it's clear that nkwlist must equal max, and | Tim Peters | 2001-10-27 | 1 | -4/+3 |
|
|
* | vgetargskeywords: Prevent another potential sprintf buffer overrun. | Tim Peters | 2001-10-27 | 1 | -2/+2 |
|
|
* | vgetargskeywords: Verify kwlist has the required length while parsing | Tim Peters | 2001-10-27 | 1 | -20/+24 |
|
|
* | PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch | Fred Drake | 2001-10-27 | 1 | -18/+11 |
|
|
* | vgetargskeywords: Removed all PyErr_Clear() calls. It's possible that | Tim Peters | 2001-10-27 | 1 | -4/+8 |
|
|
* | vgetargskeywords: The keywords arg is a dict (if non-NULL), so use the | Tim Peters | 2001-10-27 | 1 | -5/+5 |
|
|
* | vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls. | Tim Peters | 2001-10-27 | 1 | -10/+1 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -16/+9 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -20/+7 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -12/+13 |
|
|
* | vgetargskeywords: | Tim Peters | 2001-10-27 | 1 | -15/+10 |
|
|
* | PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (I | Tim Peters | 2001-10-27 | 1 | -30/+34 |
|
|
* | PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments, | Tim Peters | 2001-10-27 | 1 | -1/+16 |
|
|
* | tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexed | Tim Peters | 2001-10-27 | 1 | -3/+13 |
|
|
* | vgetargskeywords(): remove test that can't succeed. Not a bugfix, just | Tim Peters | 2001-10-27 | 1 | -13/+7 |
|
|
* | dict_constructor(): The last test was passing for the wrong reason (it | Tim Peters | 2001-10-26 | 1 | -1/+1 |
|
|
* | Fill in remaining XXX spots | Andrew M. Kuchling | 2001-10-26 | 1 | -19/+31 |
|
|
* | Fix up a number of small problems with the DOM documentation. | Fred Drake | 2001-10-26 | 2 | -20/+35 |
|
|
* | Finish off the type/class section; I don't think there's much else | Andrew M. Kuchling | 2001-10-26 | 1 | -73/+125 |
|
|
* | Remove unused variable. | Fred Drake | 2001-10-26 | 1 | -1/+0 |
|
|
* | Now that Misc/Makefile.pre.in is gone, do not attempt to install it. | Fred Drake | 2001-10-26 | 1 | -1/+0 |
|
|
* | Explain what [].insert() does when the target index is negative. | Fred Drake | 2001-10-26 | 1 | -7/+11 |
|
|
* | Add notes pointing out that these classes are kept for backward compatibility | Fred Drake | 2001-10-26 | 1 | -0/+17 |
|
|
* | Re-arrange things and remove some unused variables/imports to keep pychecker | Fred Drake | 2001-10-26 | 2 | -4/+14 |
|
|
* | Be smarter about clearing the weakref lists for instances, instance methods, | Fred Drake | 2001-10-26 | 2 | -3/+6 |
|
|
* | Many, many small fixes and improvements, most suggested by Detlef Lannert. | Fred Drake | 2001-10-26 | 1 | -17/+27 |
|
|
* | Added docs for PyObject_CallFunctionObArgs() and PyObject_CallMethodObArgs(). | Fred Drake | 2001-10-26 | 1 | -11/+32 |
|
|
* | Added refcount data for PyObject_CallFunctionObArgs() and | Fred Drake | 2001-10-26 | 1 | -0/+9 |
|
|