| Commit message (Expand) | Author | Age | Files | Lines |
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo(). | Jack Jansen | 2002-07-02 | 1 | -0/+5 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -82/+82 |
|
|
* | 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 | 1 | -219/+58 |
|
|
* | work around name clash with OS/2 TCPIP routine sock_init() | Andrew MacIntyre | 2002-06-13 | 1 | -2/+2 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | SF patch 555085 (timeout socket implementation) by Michael Gilfix. | Guido van Rossum | 2002-06-06 | 1 | -54/+420 |
|
|
* | 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 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 1 | -2/+2 |
|
|
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | Got rid of ifdefs for long-obsolete GUSI versions. | Jack Jansen | 2002-04-11 | 1 | -15/+0 |
|
|
* | Use the PyModule_Add*() APIs instead of manipulating the module dict | Fred Drake | 2002-04-01 | 1 | -201/+217 |
|
|
* | Remove last occurrance of PyArg_GetInt. It is deprecated, | Neal Norwitz | 2002-03-25 | 1 | -1/+1 |
|
|
* | Due to interaction between the MSL C library and the GUSI I/O library I can g... | Jack Jansen | 2002-03-25 | 1 | -0/+5 |
|
|
* | OS/2 EMX port changes (Modules part of patch #450267): | Andrew MacIntyre | 2002-03-03 | 1 | -6/+11 |
|
|
* | Patch #520062: Support IPv6 with VC.NET. | Martin v. Löwis | 2002-03-01 | 1 | -0/+3 |
|
|
* | Moved the declaration of PySocketSock_Type from socketmodule.h to | Tim Peters | 2002-02-17 | 1 | -0/+5 |
|
|
* | Remove extraneous variable 'total', as reported by James Rucker. | Martin v. Löwis | 2002-02-16 | 1 | -2/+1 |
|
|
* | Also fix the comment. | Marc-André Lemburg | 2002-02-16 | 1 | -1/+1 |
|
|
* | Fix the name of the header file. | Marc-André Lemburg | 2002-02-16 | 1 | -1/+1 |
|
|
* | Break SSL support out of _socket module and place it into a new | Marc-André Lemburg | 2002-02-16 | 1 | -554/+93 |
|
|
* | Patch #477750: Use METH_ constants in Modules. | Martin v. Löwis | 2002-01-17 | 1 | -2/+2 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -4/+0 |
|
|
* | Add TCP socket options from glibc 2.2.4. Fixes #495680. | Martin v. Löwis | 2001-12-22 | 1 | -0/+31 |
|
|
* | Remove INET6 define. Use ENABLE_IPV6 instead. | Martin v. Löwis | 2001-12-02 | 1 | -11/+11 |
|
|
* | More sprintf -> PyOS_snprintf. | Tim Peters | 2001-11-28 | 1 | -1/+2 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 1 | -4/+7 |
|
|
* | Fix docstring typo | Andrew M. Kuchling | 2001-11-28 | 1 | -1/+1 |
|
|
* | Test for negative buffer sizes. Fixes #482871. | Martin v. Löwis | 2001-11-19 | 1 | -0/+5 |
|
|
* | Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly | Michael W. Hudson | 2001-11-09 | 1 | -3/+6 |
|
|
* | Fix memory leaks detecting in bug report #478003. | Martin v. Löwis | 2001-11-07 | 1 | -1/+5 |
|
|
* | SF patch 473749 compile under OS/2 VA C++, from Michael Muller. | Tim Peters | 2001-11-05 | 1 | -1/+4 |
|
|
* | Correct getnameinfo refcounting and tuple parsing. Fixes #476648. | Martin v. Löwis | 2001-11-02 | 1 | -6/+4 |
|
|
* | PySocketSock_connect_ex(): On Windows, return the correct Windows exit | Tim Peters | 2001-10-30 | 1 | -1/+6 |
|
|
* | Oops. In the tp_name field, the name should be "_socket.socket", not | Guido van Rossum | 2001-10-28 | 1 | -2/+2 |
|
|
* | Made SocketType and socket the same thing: a subclassable type whose | Guido van Rossum | 2001-10-27 | 1 | -119/+167 |
|
|
* | Add sendall() method, which loops until all data is written or an | Guido van Rossum | 2001-10-26 | 1 | -2/+44 |
|
|
* | After discussion with itojun, it was clarified that Tru64 is in error, | Martin v. Löwis | 2001-10-25 | 1 | -1/+3 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -15/+10 |
|
|
* | Fix typo. Thanks to Jack Jansen for spotting it. | Martin v. Löwis | 2001-10-24 | 1 | -1/+1 |
|
|
* | Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo | Martin v. Löwis | 2001-10-24 | 1 | -0/+6 |
|
|
* | (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile | Guido van Rossum | 2001-10-19 | 1 | -1/+1 |
|
|
* | Expose three OpenSSL API calls for dealing with the PRNG. | Jeremy Hylton | 2001-10-18 | 1 | -0/+67 |
|
|
* | Fix a bunch of warnings reported by Skip. | Guido van Rossum | 2001-10-15 | 1 | -8/+8 |
|
|