| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix test for socket.getfqdn() to also include the name returned by | Brett Cannon | 2005-03-11 | 1 | -1/+1 |
|
|
* | Patch #1003700: Add socketpair function to socket module. | Dave Cole | 2004-08-09 | 1 | -0/+1 |
|
|
* | Add weakref support to sockets and re pattern objects. | Raymond Hettinger | 2004-05-31 | 1 | -1/+2 |
|
|
* | SF bug 924242: socket._fileobject._getclosed() returns wrong value | Tim Peters | 2004-03-28 | 1 | -1/+1 |
|
|
* | Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25. | Martin v. Löwis | 2003-06-14 | 1 | -10/+6 |
|
|
* | I saw errors from _fileobject.__del__ about missing self._sock. This | Guido van Rossum | 2003-05-29 | 1 | -1/+5 |
|
|
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+3 |
|
|
* | Extract the errno value to use from the errno module if possible. | Fred Drake | 2003-04-29 | 1 | -1/+6 |
|
|
* | Regain throughput lost with the _socketobject wrapper. The | Skip Montanaro | 2003-04-29 | 1 | -3/+9 |
|
|
* | Patch by Jp Calderone: | Guido van Rossum | 2003-04-25 | 1 | -0/+1 |
|
|
* | The socket module now always uses the _socketobject wrapper class, even on | Skip Montanaro | 2003-03-30 | 1 | -5/+1 |
|
|
* | On Windows, make sure SocketType is the same as socket. (SF bug | Guido van Rossum | 2002-08-22 | 1 | -1/+1 |
|
|
* | Delete junk attributes left behind by _socketobject class construction. | Tim Peters | 2002-08-08 | 1 | -0/+1 |
|
|
* | The _socketobject class has no need for a __del__ method: all it did was | Guido van Rossum | 2002-08-08 | 1 | -10/+6 |
|
|
* | OK, one more hack: speed up the case of readline() in unbuffered mode. | Guido van Rossum | 2002-08-08 | 1 | -0/+11 |
|
|
* | Another refactoring of read() and readline(), this time based on the | Guido van Rossum | 2002-08-08 | 1 | -66/+88 |
|
|
* | Extend __all__ with the exports list of the _ssl module. | Guido van Rossum | 2002-08-08 | 1 | -1/+4 |
|
|
* | Oops, stupid tabs. Sorry again. | Guido van Rossum | 2002-08-08 | 1 | -3/+3 |
|
|
* | Another refactoring. Changed 'socket' from being a factory function | Guido van Rossum | 2002-08-08 | 1 | -26/+49 |
|
|
* | Major restructuring of _fileobject. Hopefully several things now work | Guido van Rossum | 2002-08-08 | 1 | -61/+111 |
|
|
* | Replace tabs with spaces. (Sorry!) | Guido van Rossum | 2002-08-07 | 1 | -3/+3 |
|
|
* | "Unbuffered" mode of class _fileobject wasn't actually unbuffered, | Guido van Rossum | 2002-08-07 | 1 | -2/+5 |
|
|
* | Restore a full arglist to the socket wrapper, so it supports keyword | Tim Peters | 2002-07-31 | 1 | -2/+2 |
|
|
* | For platforms (like Windows) that wrap _socket.socket: | Tim Peters | 2002-07-31 | 1 | -2/+3 |
|
|
* | Add default timeout functionality. This adds setdefaulttimeout() and | Guido van Rossum | 2002-07-18 | 1 | -0/+2 |
|
|
* | Cleanup a little | Neal Norwitz | 2002-06-13 | 1 | -6/+7 |
|
|
* | SF patch 555085 (timeout socket implementation) by Michael Gilfix. | Guido van Rossum | 2002-06-06 | 1 | -59/+74 |
|
|
* | Repair so that importing socket doesn't blow up on platforms that lack | Tim Peters | 2002-02-17 | 1 | -7/+12 |
|
|
* | The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. | Martin v. Löwis | 2002-02-16 | 1 | -2/+2 |
|
|
* | Break SSL support out of _socket module and place it into a new | Marc-André Lemburg | 2002-02-16 | 1 | -1/+5 |
|
|
* | Move the helper class _closedsocket *into* the _socketobject class. | Guido van Rossum | 2001-12-18 | 1 | -7/+6 |
|
|
* | Add 'sendall' to list of socket methods. | Guido van Rossum | 2001-10-29 | 1 | -1/+1 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -1/+1 |
|
|
* | Inspired by Greg Stein's proposed simplification of the _closesocket | Guido van Rossum | 2001-08-18 | 1 | -5/+1 |
|
|
* | When the socket is closed, don't just assign 0 to self._sock. | Guido van Rossum | 2001-08-18 | 1 | -8/+18 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-03-29 | 1 | -1/+1 |
|
|
* | Add a wrapper function for ssl() on Windows. Inspired by SF patch | Guido van Rossum | 2001-03-22 | 1 | -6/+11 |
|
|
* | add errorTab to __all__ on win* | Skip Montanaro | 2001-03-18 | 1 | -0/+1 |
|
|
* | RISCOS changes by dschwertberger. | Guido van Rossum | 2001-03-02 | 1 | -1/+2 |
|
|
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+5 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -1/+1 |
|
|
* | Mention in the module's doc string that other functions of the socket API | Martin v. Löwis | 2000-09-30 | 1 | -1/+2 |
|
|
* | Support sizehint in _fileobject.readlines, as documented. | Martin v. Löwis | 2000-09-19 | 1 | -1/+5 |
|
|
* | Before comparing os.uname() to BeOS check that os.uname actually exists:-) | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
|
|
* | updated occurences of fqdn algorithm (closes patch #101197) | Peter Schneider-Kamp | 2000-08-16 | 1 | -1/+1 |
|
|
* | Revise the wrapper structure for the socket module: | Fred Drake | 2000-08-16 | 1 | -0/+237 |
|
|