Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. | Larry Hastings | 2015-04-13 | 1 | -0/+12 |
| | | | | Patch courtesy of Joe Jevnik. | ||||
* | Issue #23853: socket.socket.sendall() does no more reset the socket timeout | Victor Stinner | 2015-04-06 | 1 | -0/+4 |
| | | | | | each time data is sent successfuly. The socket timeout is now the maximum total duration to send all data. | ||||
* | Issue #23618: socket.socket.connect() now waits until the connection completes | Victor Stinner | 2015-04-02 | 1 | -0/+13 |
| | | | | | | | | instead of raising InterruptedError if the connection is interrupted by signals, signal handlers don't raise an exception and the socket is blocking or has a timeout. socket.socket.connect() still raise InterruptedError for non-blocking sockets. | ||||
* | Issue #23618: Document EINTR changes in socket documentation | Victor Stinner | 2015-04-02 | 1 | -0/+40 |
| | |||||
* | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and | Serhiy Storchaka | 2015-03-20 | 1 | -14/+28 |
| | | | | | codecs, that accepted only read-only bytes-like object now accept writable bytes-like object too. | ||||
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -2/+3 |
|\ | |||||
| * | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -2/+3 |
| | | |||||
* | | merge with 3.4 | Georg Brandl | 2014-10-28 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Closes #22249: use IPPROTO_TCP constant instead of SOL_TCP constant for ↵ | Georg Brandl | 2014-10-28 | 1 | -1/+1 |
| | | | | | | | | getaddrinfo() proto param | ||||
* | | merge with 3.4 | Georg Brandl | 2014-10-28 | 1 | -3/+0 |
|\ \ | |/ | |||||
| * | Remove duplicate bullet point. | Georg Brandl | 2014-10-28 | 1 | -3/+0 |
| | | |||||
* | | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants ↵ | Ethan Furman | 2014-10-15 | 1 | -0/+5 |
|\ \ | |/ | | | | | are SocketKind | ||||
| * | Issue20386: SocketType is again socket.socket; the IntEnum SOCK constants ↵ | Ethan Furman | 2014-10-15 | 1 | -0/+5 |
| | | | | | | | | are SocketKind | ||||
| * | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -4/+9 |
| | | |||||
* | | Issue #18643: Add socket.socketpair() on Windows. | Charles-François Natali | 2014-10-14 | 1 | -1/+3 |
| | | |||||
* | | fix issue #17552: add socket.sendfile() method allowing to send a file over ↵ | Giampaolo Rodola' | 2014-06-11 | 1 | -0/+15 |
| | | | | | | | | a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'· | ||||
* | | Issue #21455: Add a default backlog to socket.listen(). | Charles-François Natali | 2014-05-22 | 1 | -4/+7 |
| | | |||||
* | | Fix Issue #21528 - Fix documentation typos | Donald Stufft | 2014-05-20 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.3 (#16805) | Éric Araujo | 2014-03-12 | 1 | -0/+1 |
|\ \ | |||||
| * | | Fix note markup (#16805). | Éric Araujo | 2014-03-12 | 1 | -0/+1 |
| | | | | | | | | | | | | Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl. | ||||
* | | | whatsnew: inet_pton/inet_ntop support windows (#7171). | R David Murray | 2014-03-08 | 1 | -0/+6 |
| | | | | | | | | | | | | Added versionchanged to docs. | ||||
* | | | #16135: remove mentions of OS/2 from the documentation | Andrew Kuchling | 2014-03-01 | 1 | -2/+1 |
| | | | |||||
* | | | Merge from 3.3 | Andrew Kuchling | 2014-02-15 | 1 | -2/+1 |
|\ \ \ | |/ / | | / | |/ |/| | |||||
| * | Clarify versionchanged sentence. Closes #20497. | Andrew Kuchling | 2014-02-15 | 1 | -2/+1 |
| | | |||||
* | | Merge socket doc changes from 3.3 | Antoine Pitrou | 2013-12-04 | 1 | -92/+124 |
|\ \ | |/ | |||||
| * | Tweak the socket module doc layout | Antoine Pitrou | 2013-12-04 | 1 | -64/+86 |
| | | |||||
| * | Issue #19882: tweak docs for socket.close() | Antoine Pitrou | 2013-12-04 | 1 | -9/+19 |
| | | |||||
* | | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` ↵ | Atsuo Ishimoto | 2012-07-16 | 1 | -2/+2 |
| | | | | | | | | to socket module. | ||||
* | | Issue #18758: Fixed and improved cross-references. | Serhiy Storchaka | 2013-10-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #18758: Fixed and improved cross-references. | Serhiy Storchaka | 2013-10-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-27 | 1 | -4/+52 |
| | | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable(). | ||||
* | | Fix issue #17996: expose socket.AF_LINK constant on BSD and OSX. | Giampaolo Rodola' | 2013-05-21 | 1 | -0/+5 |
| | | |||||
* | | #17740: merge with 3.3. | Ezio Melotti | 2013-04-17 | 1 | -9/+9 |
|\ \ | |/ | |||||
| * | #17740: fix links to the socket function. Initial patch by Zachary Ware. | Ezio Melotti | 2013-04-17 | 1 | -9/+9 |
| | | |||||
* | | Fix ReST role markup: :method: -> :meth: | Mark Dickinson | 2013-02-10 | 1 | -1/+1 |
| | | |||||
* | | Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian | Charles-François Natali | 2013-02-05 | 1 | -5/+27 |
|/ | | | | Thorne. | ||||
* | #15831: merge with 3.2 | Ezio Melotti | 2012-09-14 | 1 | -1/+2 |
|\ | |||||
| * | #15831: document multiple signatures on different lines. Patch by Chris ↵ | Ezio Melotti | 2012-09-14 | 1 | -1/+2 |
| | | | | | | | | Jerdonek. | ||||
* | | Issue #15060: merge with 3.2 | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #15060: better fix, thanks to review on #python-dev | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #15060: merge with 3.2 | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #15060: fix typo in socket doc; Patch by anatoly techtonik | Sandro Tosi | 2012-06-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #14310: inter-process socket duplication for windows | Kristján Valur Jónsson | 2012-04-07 | 1 | -0/+25 |
| | | |||||
* | | Fix invalid markup and update suspicious ignores. | Georg Brandl | 2012-03-04 | 1 | -2/+2 |
| | | |||||
* | | merged from 3.2 | Senthil Kumaran | 2012-02-09 | 1 | -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 Kumaran | 2012-02-09 | 1 | -6/+7 |
| | | | | | | | | where relevant, instead send method. | ||||
* | | Issue #13777: Add PF_SYSTEM sockets on OS X. | Martin v. Löwis | 2012-02-03 | 1 | -0/+8 |
| | | | | | | | | Patch by Michael Goderbauer. | ||||
* | | Issue #6774: Back out c8b77efe8b56, which only brings confusion. | Charles-François Natali | 2012-01-29 | 1 | -3/+1 |
| | | |||||
* | | Issue #13724: improve documentation for socket.create_connection. | Antoine Pitrou | 2012-01-12 | 1 | -4/+11 |
|\ \ | |/ | |||||
| * | Issue #13724: improve documentation for socket.create_connection. | Antoine Pitrou | 2012-01-12 | 1 | -4/+11 |
| | |