aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/socket.py
Commit message (Expand)AuthorAge
* Merged revisions 85420 via svnmerge fromAntoine Pitrou2010-10-13
* Merged revisions 84825-84826,84830 via svnmerge fromAntoine Pitrou2010-09-15
* Merged revisions 84597-84599 via svnmerge fromAntoine Pitrou2010-09-07
* Merged revisions 73138 via svnmerge fromMark Dickinson2009-06-02
* Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,...Benjamin Peterson2009-04-11
* Fixes issue #3826 and #4791:Gregory P. Smith2009-01-12
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-22
* Follow-up of r67300: correct a failure in socket.makefile().Amaury Forgeot d'Arc2008-11-20
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-10
* update to fix leak in SSL codeBill Janssen2007-12-14
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-16
* Patch 1439 by Bill Janssen. I think this will work.Guido van Rossum2007-11-14
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-19
* Merged revisions 57620-57771 via svnmerge fromThomas Wouters2007-08-30
* Found a different, more direct way to disable ssl support until it's fixed.Guido van Rossum2007-08-29
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-28
* Changes to io.py and socket.py by Christian Heimes.Guido van Rossum2007-08-27
* Make sure socket.close() doesn't interfere with socket.makefile().Jeremy Hylton2007-08-03
* (1) SF patch# 1755214 by Amaury Forgeot d'Arc which makes some testsGuido van Rossum2007-07-17
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-21
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-21
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-09
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-01
* Patch #1550800: make exec a function.Georg Brandl2006-09-06
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Merge the rest of the trunk.Thomas Wouters2006-06-08
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-27
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Fix test for socket.getfqdn() to also include the name returned byBrett Cannon2005-03-11
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-09
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-31
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-28
* Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25.Martin v. Löwis2003-06-14
* I saw errors from _fileobject.__del__ about missing self._sock. ThisGuido van Rossum2003-05-29
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-10
* Extract the errno value to use from the errno module if possible.Fred Drake2003-04-29
* Regain throughput lost with the _socketobject wrapper. TheSkip Montanaro2003-04-29
* Patch by Jp Calderone:Guido van Rossum2003-04-25
* The socket module now always uses the _socketobject wrapper class, even onSkip Montanaro2003-03-30
* On Windows, make sure SocketType is the same as socket. (SF bugGuido van Rossum2002-08-22
* Delete junk attributes left behind by _socketobject class construction.Tim Peters2002-08-08
* The _socketobject class has no need for a __del__ method: all it did wasGuido van Rossum2002-08-08
* OK, one more hack: speed up the case of readline() in unbuffered mode.Guido van Rossum2002-08-08
* Another refactoring of read() and readline(), this time based on theGuido van Rossum2002-08-08
* Extend __all__ with the exports list of the _ssl module.Guido van Rossum2002-08-08
* Oops, stupid tabs. Sorry again.Guido van Rossum2002-08-08
* Another refactoring. Changed 'socket' from being a factory functionGuido van Rossum2002-08-08
* Major restructuring of _fileobject. Hopefully several things now workGuido van Rossum2002-08-08
* Replace tabs with spaces. (Sorry!)Guido van Rossum2002-08-07