summaryrefslogtreecommitdiffstats
path: root/Doc/library/socket.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix note markup (#16805).Éric Araujo2014-03-121-0/+1
| | | | Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl.
* Clarify versionchanged sentence. Closes #20497.Andrew Kuchling2014-02-151-2/+1
|
* Tweak the socket module doc layoutAntoine Pitrou2013-12-041-64/+86
|
* Issue #19882: tweak docs for socket.close()Antoine Pitrou2013-12-041-9/+19
|
* Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-1/+1
|
* #17740: fix links to the socket function. Initial patch by Zachary Ware.Ezio Melotti2013-04-171-9/+9
|
* #15831: merge with 3.2Ezio Melotti2012-09-141-1/+2
|\
| * #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-1/+2
| | | | | | | | Jerdonek.
* | Issue #15060: merge with 3.2Sandro Tosi2012-06-131-1/+1
|\ \ | |/
| * Issue #15060: better fix, thanks to review on #python-devSandro Tosi2012-06-131-1/+1
| |
* | Issue #15060: merge with 3.2Sandro Tosi2012-06-131-1/+1
|\ \ | |/
| * Issue #15060: fix typo in socket doc; Patch by anatoly techtonikSandro Tosi2012-06-131-1/+1
| |
* | Issue #14310: inter-process socket duplication for windowsKristján Valur Jónsson2012-04-071-0/+25
| |
* | Fix invalid markup and update suspicious ignores.Georg Brandl2012-03-041-2/+2
| |
* | merged from 3.2Senthil Kumaran2012-02-091-6/+7
|\ \ | |/ | | | | | | Issue #6005: Examples in the socket library documentation use sendall, where relevant, instead send method.
| * Fix Issue #6005: Examples in the socket library documentation use sendall,Senthil Kumaran2012-02-091-6/+7
| | | | | | | | where relevant, instead send method.
* | Issue #13777: Add PF_SYSTEM sockets on OS X.Martin v. Löwis2012-02-031-0/+8
| | | | | | | | Patch by Michael Goderbauer.
* | Issue #6774: Back out c8b77efe8b56, which only brings confusion.Charles-François Natali2012-01-291-3/+1
| |
* | Issue #13724: improve documentation for socket.create_connection.Antoine Pitrou2012-01-121-4/+11
|\ \ | |/
| * Issue #13724: improve documentation for socket.create_connection.Antoine Pitrou2012-01-121-4/+11
| |
* | Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystemAntoine Pitrou2011-12-161-2/+16
| | | | | | | | | | encoding and the surrogateescape error handler, rather than UTF-8. Patch by David Watson.
* | Merge 3.2Éric Araujo2011-11-291-8/+8
|\ \ | |/
| * Mark up constants in sockets docs as suchÉric Araujo2011-11-291-8/+8
| |
* | Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support.Charles-François Natali2011-11-101-5/+19
| |
* | Replace mentions of socket.error.Antoine Pitrou2011-10-121-17/+18
| |
* | Minimal update of socket docs for PEP 3151.Antoine Pitrou2011-10-121-11/+12
| | | | | | | | More editing is probably desirable.
* | Issue #10141: Don't use hardcoded frame size in example, use struct.calcsize()Victor Stinner2011-10-061-1/+2
| |
* | Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by MatthiasCharles-François Natali2011-10-061-5/+66
| | | | | | | | Fuchs, updated by Tiago Gonçalves.
* | #12781: merge with 3.2Sandro Tosi2011-09-021-0/+19
|\ \ | |/
| * #12781: Mention SO_REUSEADDR flag near socket examplesSandro Tosi2011-09-021-0/+19
| |
* | Add support for the send/recvmsg API to the socket module. Patch by David ↵Nick Coghlan2011-08-221-0/+182
| | | | | | | | Watson and Heiko Wundram. (Closes #6560)
* | #12725: merge with 3.2.Ezio Melotti2011-08-141-3/+3
|\ \ | |/
| * #12725: fix working. Patch by Ben Hayden.Ezio Melotti2011-08-141-3/+3
| |
* | Further documentation updates to be consistent with doc standards and commentsGregory P. Smith2011-05-231-7/+7
| | | | | | | | Ezio Melotti pointed out.
* | Refer to the return value on nameindex and friends as a string, not a byteGregory P. Smith2011-05-231-3/+3
| | | | | | | | | | string. The code was fixed to return strings instead of bytes and to accept either.
* | Issue #1746656: Add if_nameindex, if_nametoindex, if_indextonameGregory P. Smith2011-05-151-0/+33
| | | | | | | | methods to the socket module.
* | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-2/+2
|\ \ | |/ | | | | order to accept exactly one connection. Patch by Daniel Evers.
| * Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-2/+2
| | | | | | | | order to accept exactly one connection. Patch by Daniel Evers.
| * Merged revisions 88686 via svnmerge fromAntoine Pitrou2011-02-281-21/+26
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88686 | antoine.pitrou | 2011-02-28 23:38:07 +0100 (lun., 28 févr. 2011) | 4 lines Recommend inspecting the errno attribute of socket.error objects, and improve wording. ........
* | Recommend inspecting the errno attribute of socket.error objects,Antoine Pitrou2011-02-281-21/+26
| | | | | | | | and improve wording.
* | Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall.Antoine Pitrou2011-02-281-0/+10
|/
* Overhaul the documentation about socket timeouts.Antoine Pitrou2011-01-051-49/+84
|
* Some nits.Antoine Pitrou2011-01-021-6/+9
|
* Clarify behaviour of close() and shutdown() on sockets.Antoine Pitrou2011-01-021-0/+6
|
* #10739: document that on Windows, socket.makefile() does not make a file ↵Georg Brandl2010-12-281-8/+14
| | | | that has a true file descriptor usable where such a thing is expected.
* Improve readability of the socket docsAntoine Pitrou2010-12-121-57/+82
|
* Issue10100 - fromfd is now available on all platformsSenthil Kumaran2010-10-151-1/+0
|
* Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,Antoine Pitrou2010-10-141-0/+15
| | | | where supported by the system. Patch by Nikita Vetoshkin.
* Issue #10041: The signature of optional arguments in socket.makefile()Antoine Pitrou2010-10-131-1/+1
| | | | | didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
* Migrate to Sphinx 1.0 C language constructs.Georg Brandl2010-10-061-12/+12
|