summaryrefslogtreecommitdiffstats
path: root/Doc/library/socket.rst
Commit message (Collapse)AuthorAgeFilesLines
* issue3972: HTTPConnection and HTTPSConnection now support aGregory P. Smith2010-01-031-3/+4
| | | | | | source_address parameter. Also cleans up an annotation in the socket documentation.
* Adds an optional source_address parameter to socket.create_connection().Gregory P. Smith2010-01-031-1/+7
| | | | For use by issue3972.
* #7388: "python".capitalize() in the DocEzio Melotti2009-12-191-1/+1
|
* #6591: add reference to ioctl in fcntl module for platforms other than Windows.Georg Brandl2009-07-291-0/+3
|
* Remove last remnants of the ipaddr package.Amaury Forgeot d'Arc2009-06-231-5/+0
| | | | The changes in mcast.py come from the first version of the patch for issue5379.
* #6175: document that inet_aton supports alternate input formats with less ↵Georg Brandl2009-06-041-0/+3
| | | | than three dots.
* #5916, 5917: small socket doc improvements.Georg Brandl2009-05-041-2/+7
|
* Clarify socket timeout behavior vs system network stack behavior on connectGregory P. Smith2009-02-181-4/+7
| | | | for issue5293.
* Remove tabs from the documentation.Georg Brandl2009-01-031-16/+17
|
* Remove trailing whitespace.Georg Brandl2009-01-031-13/+13
|
* clarify by splitting into multiple paragraphsBenjamin Peterson2008-11-031-5/+9
|
* Improve wordingAndrew M. Kuchling2008-09-241-7/+7
|
* Fixed the semantic of timeout for socket.create_connection andFacundo Batista2008-05-291-6/+5
| | | | | | all the upper level libraries that use it, including urllib2. Added and fixed some tests, and changed docs correspondingly. Thanks to John J Lee for the patch and the pusing, :)
* socketserver renaming reversal part 3: move the module into the rightGeorg Brandl2008-05-241-1/+1
| | | | place and fix all references to it. Closes #2926.
* Updated all import statements to use the new socketserver module name.Alexandre Vassalotti2008-05-121-1/+1
| | | | | Renamed socketserver module in its own documentation. Renamed documentation references.
* Fix typo.Georg Brandl2008-05-111-1/+1
|
* #2742: ``''`` is not converted to NULL in getaddrinfo.Georg Brandl2008-05-111-4/+4
|
* #2752: fix second example too.Georg Brandl2008-05-051-1/+1
|
* #2752: wrong meaning of '' for socket host.Georg Brandl2008-05-041-1/+1
|
* A lot more typo fixes by Ori Avtalion.Georg Brandl2008-02-221-1/+1
|
* Update IPv6 RFC number.Georg Brandl2008-02-011-1/+1
|
* Markup fixAndrew M. Kuchling2008-01-161-1/+1
|
* Issue #1646: Make socket support TIPC. The socket module now has supportChristian Heimes2008-01-071-0/+27
| | | | | for TIPC under Linux, see http://tipc.sf.net/ for more information. Thanks to Alberto Bertogli for the patch
* Revert socket.rst to unix-eol.Georg Brandl2008-01-051-906/+906
|
* Added interface to Windows' WSAIoctl and a simple example for a network sniffer.Christian Heimes2008-01-041-863/+906
|
* Some cleanup in the docs.Georg Brandl2007-12-291-1/+1
|
* Change socket.error to inherit from IOError rather than being a standGregory P. Smith2007-09-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | alone class. This addresses the primary concern in http://bugs.python.org/issue1706815 python-dev discussion here: http://mail.python.org/pipermail/python-dev/2007-July/073749.html I chose IOError rather than EnvironmentError as the base class since socket objects are often used as transparent duck typed file objects in code already prepared to deal with IOError exceptions. also a minor fix: urllib2 - fix a couple places where IOError was raised rather than URLError. for better or worse, URLError already inherits from IOError so this won't break any existing code. test_urllib2net - replace bad ftp urls.
* Wording changeAndrew M. Kuchling2007-09-011-1/+1
|
* Patch 10124 by Bill Janssen, docs for the new ssl code.Guido van Rossum2007-08-271-91/+1
|
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-3/+12
| | | | | While cleaning up Bill's C style, I may have cleaned up some code he didn't touch as well (in _ssl.c).
* Bug #1752332: httplib no longer uses socket.getaddrinfo().Georg Brandl2007-08-231-1/+1
|
* Move the 2.6 reST doc tree in place.Georg Brandl2007-08-151-0/+941