| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val... | Antoine Pitrou | 2012-09-14 | 1 | -2/+13 |
|\ |
|
| * | Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val... | Antoine Pitrou | 2012-09-14 | 1 | -2/+13 |
|
|
* | | Issue #14310: inter-process socket duplication for windows | Kristján Valur Jónsson | 2012-04-07 | 1 | -1/+9 |
|
|
* | | Issue #13872: socket.detach() now marks the socket closed (as mirrored in the... | Antoine Pitrou | 2012-03-31 | 1 | -0/+11 |
|\ \
| |/ |
|
| * | Issue #13872: socket.detach() now marks the socket closed (as mirrored in the... | Antoine Pitrou | 2012-03-31 | 1 | -0/+11 |
|
|
| * | Merged revisions 88622 via svnmerge from | Antoine Pitrou | 2011-02-25 | 1 | -0/+6 |
|
|
* | | Use InterruptedError instead of checking for EINTR | Antoine Pitrou | 2011-10-23 | 1 | -5/+3 |
|
|
* | | Issue #11127: Raise a TypeError when trying to pickle a socket object. | Antoine Pitrou | 2011-03-20 | 1 | -0/+3 |
|
|
* | | Issue #7322: Trying to read from a socket's file-like object after a timeout | Antoine Pitrou | 2011-02-25 | 1 | -0/+6 |
|/ |
|
* | Issue #7995: When calling accept() on a socket with a timeout, the returned | Antoine Pitrou | 2011-01-05 | 1 | -1/+7 |
|
|
* | Issue #10819: SocketIO.name property returns -1 when its closed, instead of | Victor Stinner | 2011-01-04 | 1 | -1/+4 |
|
|
* | Issue #10093: ResourceWarnings are now issued when files and sockets are | Antoine Pitrou | 2010-10-29 | 1 | -1/+1 |
|
|
* | Issue #10041: The signature of optional arguments in socket.makefile() | Antoine Pitrou | 2010-10-13 | 1 | -2/+2 |
|
|
* | Issue #9854: SocketIO objects now observe the RawIOBase interface in | Antoine Pitrou | 2010-09-18 | 1 | -2/+15 |
|
|
* | Reverted unwanted change in r84826 | Antoine Pitrou | 2010-09-15 | 1 | -2/+0 |
|
|
* | Improve docs for socket.makefile() and SocketIO | Antoine Pitrou | 2010-09-15 | 1 | -0/+23 |
|
|
* | Add a comment explaining why SocketIO is needed | Antoine Pitrou | 2010-09-15 | 1 | -0/+7 |
|
|
* | Issue #1552: socket.socketpair() now returns regular socket.socket | Antoine Pitrou | 2010-09-14 | 1 | -0/+21 |
|
|
* | Fix issue 9794: adds context manager protocol to socket.socket so that socket... | Giampaolo Rodolà | 2010-09-08 | 1 | -0/+7 |
|
|
* | Issue #9792: In case of connection failure, socket.create_connection() | Antoine Pitrou | 2010-09-07 | 1 | -4/+7 |
|
|
* | reformat comment | Benjamin Peterson | 2010-08-31 | 1 | -2/+2 |
|
|
* | Issue #808164: Fixed socket.close to avoid references to globals, to | Daniel Stutzbach | 2010-08-31 | 1 | -2/+4 |
|
|
* | remove SocketIO.__del__; close() can handle it | Benjamin Peterson | 2010-07-09 | 1 | -4/+0 |
|
|
* | Merged revisions 74426 via svnmerge from | Gregory P. Smith | 2010-01-04 | 1 | -3/+11 |
|
|
* | Merged revisions 77263-77264 via svnmerge from | Gregory P. Smith | 2010-01-03 | 1 | -3/+9 |
|
|
* | Merged revisions 73138 via svnmerge from | Mark Dickinson | 2009-06-02 | 1 | -1/+1 |
|
|
* | Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,... | Benjamin Peterson | 2009-04-11 | 1 | -1/+1 |
|
|
* | Fixes issue #3826 and #4791: | Gregory P. Smith | 2009-01-12 | 1 | -2/+6 |
|
|
* | make FileIO.mode always include 'b' | Benjamin Peterson | 2008-11-22 | 1 | -1/+3 |
|
|
* | Follow-up of r67300: correct a failure in socket.makefile(). | Amaury Forgeot d'Arc | 2008-11-20 | 1 | -5/+8 |
|
|
* | Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,... | Georg Brandl | 2008-06-10 | 1 | -7/+11 |
|
|
* | update to fix leak in SSL code | Bill Janssen | 2007-12-14 | 1 | -2/+4 |
|
|
* | This is roughly socket2.diff from issue 1378, with a few changes applied | Guido van Rossum | 2007-11-16 | 1 | -41/+30 |
|
|
* | Patch 1439 by Bill Janssen. I think this will work. | Guido van Rossum | 2007-11-14 | 1 | -85/+21 |
|
|
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -2/+2 |
|
|
* | Merged revisions 57620-57771 via svnmerge from | Thomas Wouters | 2007-08-30 | 1 | -13/+32 |
|
|
* | Found a different, more direct way to disable ssl support until it's fixed. | Guido van Rossum | 2007-08-29 | 1 | -6/+6 |
|
|
* | Merge the trunk changes in. Breaks socket.ssl for now. | Thomas Wouters | 2007-08-28 | 1 | -0/+4 |
|
|
* | Changes to io.py and socket.py by Christian Heimes. | Guido van Rossum | 2007-08-27 | 1 | -3/+10 |
|
|
* | Make sure socket.close() doesn't interfere with socket.makefile(). | Jeremy Hylton | 2007-08-03 | 1 | -11/+109 |
|
|
* | (1) SF patch# 1755214 by Amaury Forgeot d'Arc which makes some tests | Guido van Rossum | 2007-07-17 | 1 | -6/+9 |
|
|
* | Sockets facelift. APIs that could return binary data (e.g. aton() and | Guido van Rossum | 2007-05-21 | 1 | -301/+94 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -3/+30 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 1 | -2/+1 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -2/+6 |
|
|
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -12/+17 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 1 | -3/+3 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -1/+5 |
|
|