summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #1466993: remove wrong comment in socket.pyGeorg Brandl2006-04-091-8/+0
* Whitespace normalization.Tim Peters2006-03-221-1/+1
* Correct API design mistake from rev. 43126: make socket attributes readonly p...Georg Brandl2006-03-211-18/+4
* RFE #567972: Socket objects' family, type and proto properties areGeorg Brandl2006-03-171-0/+18
* Fix test for socket.getfqdn() to also include the name returned byBrett Cannon2005-03-111-1/+1
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-091-0/+1
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-311-1/+2
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-281-1/+1
* Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25.Martin v. Löwis2003-06-141-10/+6
* I saw errors from _fileobject.__del__ about missing self._sock. ThisGuido van Rossum2003-05-291-1/+5
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+3
* Extract the errno value to use from the errno module if possible.Fred Drake2003-04-291-1/+6
* Regain throughput lost with the _socketobject wrapper. TheSkip Montanaro2003-04-291-3/+9
* Patch by Jp Calderone:Guido van Rossum2003-04-251-0/+1
* The socket module now always uses the _socketobject wrapper class, even onSkip Montanaro2003-03-301-5/+1
* On Windows, make sure SocketType is the same as socket. (SF bugGuido van Rossum2002-08-221-1/+1
* Delete junk attributes left behind by _socketobject class construction.Tim Peters2002-08-081-0/+1
* The _socketobject class has no need for a __del__ method: all it did wasGuido van Rossum2002-08-081-10/+6
* OK, one more hack: speed up the case of readline() in unbuffered mode.Guido van Rossum2002-08-081-0/+11
* Another refactoring of read() and readline(), this time based on theGuido van Rossum2002-08-081-66/+88
* Extend __all__ with the exports list of the _ssl module.Guido van Rossum2002-08-081-1/+4
* Oops, stupid tabs. Sorry again.Guido van Rossum2002-08-081-3/+3
* Another refactoring. Changed 'socket' from being a factory functionGuido van Rossum2002-08-081-26/+49
* Major restructuring of _fileobject. Hopefully several things now workGuido van Rossum2002-08-081-61/+111
* Replace tabs with spaces. (Sorry!)Guido van Rossum2002-08-071-3/+3
* "Unbuffered" mode of class _fileobject wasn't actually unbuffered,Guido van Rossum2002-08-071-2/+5
* Restore a full arglist to the socket wrapper, so it supports keywordTim Peters2002-07-311-2/+2
* For platforms (like Windows) that wrap _socket.socket:Tim Peters2002-07-311-2/+3
* Add default timeout functionality. This adds setdefaulttimeout() andGuido van Rossum2002-07-181-0/+2
* Cleanup a littleNeal Norwitz2002-06-131-6/+7
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-061-59/+74
* Repair so that importing socket doesn't blow up on platforms that lackTim Peters2002-02-171-7/+12
* The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715.Martin v. Löwis2002-02-161-2/+2
* Break SSL support out of _socket module and place it into a newMarc-André Lemburg2002-02-161-1/+5
* Move the helper class _closedsocket *into* the _socketobject class.Guido van Rossum2001-12-181-7/+6
* Add 'sendall' to list of socket methods.Guido van Rossum2001-10-291-1/+1
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-1/+1
* Inspired by Greg Stein's proposed simplification of the _closesocketGuido van Rossum2001-08-181-5/+1
* When the socket is closed, don't just assign 0 to self._sock.Guido van Rossum2001-08-181-8/+18
* Whitespace normalization.Tim Peters2001-03-291-1/+1
* Add a wrapper function for ssl() on Windows. Inspired by SF patchGuido van Rossum2001-03-221-6/+11
* add errorTab to __all__ on win*Skip Montanaro2001-03-181-0/+1
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-1/+2
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+5
* Whitespace normalization.Tim Peters2001-01-151-1/+1
* Mention in the module's doc string that other functions of the socket APIMartin v. Löwis2000-09-301-1/+2
* Support sizehint in _fileobject.readlines, as documented.Martin v. Löwis2000-09-191-1/+5
* Before comparing os.uname() to BeOS check that os.uname actually exists:-)Jack Jansen2000-09-151-1/+1
* updated occurences of fqdn algorithm (closes patch #101197)Peter Schneider-Kamp2000-08-161-1/+1
* Revise the wrapper structure for the socket module:Fred Drake2000-08-161-0/+237