summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
...
* 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