summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #27698: Add socketpair to socket.__all__ on WindowsVictor Stinner2016-08-171-0/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #16915: Clarify that mode parameter of socket.makefile() does not acceptBerker Peksag2016-02-181-3/+3
* merge 3.4 (#25471)Benjamin Peterson2015-10-251-1/+5
|\
| * accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471)Benjamin Peterson2015-10-251-1/+5
| * issue23673Ethan Furman2015-03-191-9/+9
* | issue23673Ethan Furman2015-03-191-8/+8
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-2/+0
* | merge 3.4 (#23221)Benjamin Peterson2015-01-131-1/+1
|\ \ | |/
| * fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
* | Issue #20604: Added missed invalid mode in error message of socket.makefile().Serhiy Storchaka2014-11-191-3/+2
|\ \ | |/
| * Issue #20604: Added missed invalid mode in error message of socket.makefile().Serhiy Storchaka2014-11-191-3/+2
* | Issue20689: add missing API pieces to __all__Ethan Furman2014-10-181-1/+3
|\ \ | |/
| * Issue20689: add missing API pieces to __all__Ethan Furman2014-10-181-1/+3
* | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are...Ethan Furman2014-10-151-5/+7
|\ \ | |/
| * Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants are...Ethan Furman2014-10-151-5/+7
* | Issue #18643: Add socket.socketpair() on Windows.Charles-François Natali2014-10-141-0/+51
* | Issue #22032: __qualname__ instead of __name__ is now always used to formatSerhiy Storchaka2014-07-221-1/+1
* | fix issue #17552: add socket.sendfile() method allowing to send a file over a...Giampaolo Rodola'2014-06-111-1/+147
|/
* 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-271-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-141-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-03-311-0/+11
|\ \ | |/
| * Issue #13872: socket.detach() now marks the socket closed (as mirrored in the...Antoine Pitrou2012-03-311-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