summaryrefslogtreecommitdiff
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
* Provide a more readable representation of socket on repr().Giampaolo Rodola'2013-10-031-1/+1
* Switch the AF_* and SOCK_* constants in the socket module to IntEnum.Eli Bendersky2013-08-311-1/+65
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-1/+16
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* Fix issue #17675: make socket repr() provide local and remote addresses (if a...Giampaolo Rodola'2013-04-101-7/+26
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val...Antoine Pitrou2012-09-141-2/+13
|\
| * Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise Val...Antoine Pitrou2012-09-141-2/+13
* | Issue #14310: inter-process socket duplication for windowsKristján Valur Jónsson2012-04-071-1/+9
* | Issue #13872: socket.detach() now marks the socket closed (as mirrored in the...Antoine Pitrou2012-04-011-0/+11
|\ \ | |/
| * Issue #13872: socket.detach() now marks the socket closed (as mirrored in the...Antoine Pitrou2012-04-011-0/+11
| * Merged revisions 88622 via svnmerge fromAntoine Pitrou2011-02-251-0/+6
* | Use InterruptedError instead of checking for EINTRAntoine Pitrou2011-10-231-5/+3
* | Issue #11127: Raise a TypeError when trying to pickle a socket object.Antoine Pitrou2011-03-201-0/+3
* | Issue #7322: Trying to read from a socket's file-like object after a timeoutAntoine Pitrou2011-02-251-0/+6
|/
* Issue #7995: When calling accept() on a socket with a timeout, the returnedAntoine Pitrou2011-01-051-1/+7
* Issue #10819: SocketIO.name property returns -1 when its closed, instead ofVictor Stinner2011-01-041-1/+4
* Issue #10093: ResourceWarnings are now issued when files and sockets areAntoine Pitrou2010-10-291-1/+1
* Issue #10041: The signature of optional arguments in socket.makefile()Antoine Pitrou2010-10-131-2/+2
* Issue #9854: SocketIO objects now observe the RawIOBase interface inAntoine Pitrou2010-09-181-2/+15
* Reverted unwanted change in r84826Antoine Pitrou2010-09-151-2/+0
* Improve docs for socket.makefile() and SocketIOAntoine Pitrou2010-09-151-0/+23
* Add a comment explaining why SocketIO is neededAntoine Pitrou2010-09-151-0/+7
* Issue #1552: socket.socketpair() now returns regular socket.socketAntoine Pitrou2010-09-141-0/+21
* Fix issue 9794: adds context manager protocol to socket.socket so that socket...Giampaolo Rodolà2010-09-081-0/+7
* Issue #9792: In case of connection failure, socket.create_connection()Antoine Pitrou2010-09-071-4/+7
* reformat commentBenjamin Peterson2010-08-311-2/+2
* Issue #808164: Fixed socket.close to avoid references to globals, toDaniel Stutzbach2010-08-311-2/+4
* remove SocketIO.__del__; close() can handle itBenjamin Peterson2010-07-091-4/+0
* Merged revisions 74426 via svnmerge fromGregory P. Smith2010-01-041-3/+11
* Merged revisions 77263-77264 via svnmerge fromGregory P. Smith2010-01-031-3/+9
* Merged revisions 73138 via svnmerge fromMark Dickinson2009-06-021-1/+1
* Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,...Benjamin Peterson2009-04-111-1/+1
* Fixes issue #3826 and #4791:Gregory P. Smith2009-01-121-2/+6
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-221-1/+3
* Follow-up of r67300: correct a failure in socket.makefile().Amaury Forgeot d'Arc2008-11-201-5/+8
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-101-7/+11
* update to fix leak in SSL codeBill Janssen2007-12-141-2/+4
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-161-41/+30
* Patch 1439 by Bill Janssen. I think this will work.Guido van Rossum2007-11-141-85/+21
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-2/+2
* Merged revisions 57620-57771 via svnmerge fromThomas Wouters2007-08-301-13/+32
* Found a different, more direct way to disable ssl support until it's fixed.Guido van Rossum2007-08-291-6/+6
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-0/+4
* Changes to io.py and socket.py by Christian Heimes.Guido van Rossum2007-08-271-3/+10
* Make sure socket.close() doesn't interfere with socket.makefile().Jeremy Hylton2007-08-031-11/+109
* (1) SF patch# 1755214 by Amaury Forgeot d'Arc which makes some testsGuido van Rossum2007-07-171-6/+9
* Sockets facelift. APIs that could return binary data (e.g. aton() andGuido van Rossum2007-05-211-301/+94
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+30