summaryrefslogtreecommitdiff
path: root/Lib/socket.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-1/+5
* issue #879399Kristján Valur Jónsson2012-12-251-2/+2
* Merged revisions 84597-84599 via svnmerge fromAntoine Pitrou2010-09-071-3/+7
* Issue #808164: Fixed socket.close to avoid references to globals, toDaniel Stutzbach2010-08-311-1/+3
* Adds an optional source_address parameter to socket.create_connection().Gregory P. Smith2010-01-031-3/+9
* Fix py3k warnings in the socket moduleAntoine Pitrou2009-10-141-9/+10
* Fix issue1628205: Socket file objects returned by socket.socket.makefile() nowGregory P. Smith2009-08-131-13/+56
* http://bugs.python.org/issue6117Kristján Valur Jónsson2009-06-021-10/+9
* Typo in socket.py. Thanks Pablo Torres Navarrete.Mark Dickinson2009-06-021-1/+1
* remove unpleasant execChris Withers2009-04-111-5/+11
* add create_connection to __all__ #5711Benjamin Peterson2009-04-061-1/+1
* Remove buffer() usage in the socket module by just slicing directly on theBrett Cannon2008-08-081-6/+6
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-7/+10
* Fix a bug introduced in r62627. see issue2760 and issue2632.Gregory P. Smith2008-05-051-19/+18
* This should fix issue2632. A long description of the two competingGregory P. Smith2008-05-021-59/+104
* #1389051, #1092502: fix excessively large allocations when using read() on a ...Andrew M. Kuchling2008-02-231-1/+1
* socket.ioctl is only available on WindowsChristian Heimes2008-01-041-1/+4
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-041-1/+1
* Revert dummy commit now that the build slave is building.Georg Brandl2007-12-161-1/+0
* Dummy commit to investigate #1617.Georg Brandl2007-12-161-0/+1
* More work on SSL support.Bill Janssen2007-09-101-2/+2
* This contains a number of things:Bill Janssen2007-08-291-12/+28
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-4/+3
* Bug #978833: Close https sockets by releasing the _ssl object.Martin v. Löwis2007-07-271-0/+4
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-5/+5
* Added a 'create_connect()' function to socket.py, which creates aFacundo Batista2007-03-231-0/+29
* Bug #978833: Revert r50844, as it broke _socketobject.dup.Martin v. Löwis2007-03-231-3/+0
* Patch #1627441: close sockets properly in urllib2.Georg Brandl2007-01-211-2/+6
* Bug #978833: Really close underlying socket in _socketobject.close.Martin v. Löwis2006-07-261-0/+3
* Release all forwarded functions in .close. Fixes #1513223.Martin v. Löwis2006-07-011-12/+14
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-041-3/+3
* Support for buffer protocol for socket and struct.Martin Blais2006-05-261-1/+5
* Patch #1466993: remove wrong comment in socket.pyGeorg Brandl2006-04-091-8/+0
* Whitespace normalization.Tim Peters2006-03-221-1/+1
* Correct API design mistake from rev. 43126: make socket attributes readonly p...Georg Brandl2006-03-211-18/+4
* RFE #567972: Socket objects' family, type and proto properties areGeorg Brandl2006-03-171-0/+18
* Fix test for socket.getfqdn() to also include the name returned byBrett Cannon2005-03-111-1/+1
* Patch #1003700: Add socketpair function to socket module.Dave Cole2004-08-091-0/+1
* Add weakref support to sockets and re pattern objects.Raymond Hettinger2004-05-311-1/+2
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-281-1/+1
* Always unwrap _socketobj in socket.ssl. Revert httplib.py 1.25.Martin v. Löwis2003-06-141-10/+6
* I saw errors from _fileobject.__del__ about missing self._sock. ThisGuido van Rossum2003-05-291-1/+5
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+3
* Extract the errno value to use from the errno module if possible.Fred Drake2003-04-291-1/+6
* Regain throughput lost with the _socketobject wrapper. TheSkip Montanaro2003-04-291-3/+9
* Patch by Jp Calderone:Guido van Rossum2003-04-251-0/+1
* The socket module now always uses the _socketobject wrapper class, even onSkip Montanaro2003-03-301-5/+1
* On Windows, make sure SocketType is the same as socket. (SF bugGuido van Rossum2002-08-221-1/+1
* Delete junk attributes left behind by _socketobject class construction.Tim Peters2002-08-081-0/+1