| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [3.7] bpo-11233: Create availability directive for documentation (GH-9692) ↵ | Cheryl Sabella | 2018-10-15 | 1 | -26/+26 |
| | | | | | | | | | | | | (GH-9830) Replace "Availability: xxx" with ".. availability:: xxx" in the doc. Original patch by Georg Brandl. Co-Authored-By: Georg Brandl <georg@python.org> (cherry picked from commit 2d6097d027e0dd3debbabc702aa9c98d94ba32a3) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com> | ||||
| * | [3.7] closes bpo-25041: Document AF_PACKET socket address format. (GH-9207) | Benjamin Peterson | 2018-09-12 | 1 | -10/+35 |
| | | | | | | (cherry picked from commit 731ff68eeef58babdf2b32dc9a73b141760c2be9) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com> | ||||
| * | bpo-33921: Clarify how to bind to all interfaces using socket (GH-7877) | Miss Islington (bot) | 2018-07-28 | 1 | -6/+7 |
| | | | | | | | Clarify how to bind to all interfaces using socket (cherry picked from commit 95dfb9c3aefdc981d23af700b753a6c97159ccad) Co-authored-by: johnthagen <johnthagen@users.noreply.github.com> | ||||
| * | bpo-32394: Remove some TCP options on old version Windows. (GH-5523) | Miss Islington (bot) | 2018-02-26 | 1 | -0/+7 |
| | | | | | | (cherry picked from commit 19e7d48ce89422091f9af93038b9fee075d46e9e) Co-authored-by: animalize <animalize@users.noreply.github.com> | ||||
| * | bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (GH-5449) ↵ | Miss Islington (bot) | 2018-02-12 | 1 | -0/+15 |
| | | | | | | | | (#5641) (cherry picked from commit 7766b96ab80b04509bbac708ee5ecf3c1c5934fc) Co-authored-by: Коренберг Марк <socketpair@gmail.com> | ||||
| * | bpo-28134: Auto-detect socket values from file descriptor (#1349) | Christian Heimes | 2018-01-29 | 1 | -4/+9 |
| | | | | | | | | | | | | | | | | Fix socket(fileno=fd) by auto-detecting the socket's family, type, and proto from the file descriptor. The auto-detection can be overruled by passing in family, type, and proto explicitly. Without the fix, all socket except for TCP/IP over IPv4 are basically broken: >>> s = socket.create_connection(('www.python.org', 443)) >>> s <socket.socket fd=3, family=AddressFamily.AF_INET6, type=SocketKind.SOCK_STREAM, proto=6, laddr=('2003:58:bc4a:3b00:56ee:75ff:fe47:ca7b', 59730, 0, 0), raddr=('2a04:4e42:1b::223', 443, 0, 0)> >>> socket.socket(fileno=s.fileno()) <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('2003:58:bc4a:3b00::%2550471192', 59730, 0, 2550471192), raddr=('2a04:4e42:1b:0:700c:e70b:ff7f:0%2550471192', 443, 0, 2550471192)> Signed-off-by: Christian Heimes <christian@python.org> | ||||
| * | bpo-32373: Add socket.getblocking() method. (#4926) | Yury Selivanov | 2018-01-28 | 1 | -0/+10 |
| | | |||||
| * | Revert "bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)" ↵ | Yury Selivanov | 2018-01-28 | 1 | -15/+0 |
| | | | | | | (#5394) This reverts commit 47c0b1f7d4115e6f15e6776c1f91d28e7d96fe0c. | ||||
| * | bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724) | Коренберг Марк | 2018-01-27 | 1 | -0/+15 |
| | | |||||
| * | bpo-32454: socket closefd (#5048) | Christian Heimes | 2018-01-27 | 1 | -0/+8 |
| | | | | | | Add close(fd) function to the socket module Signed-off-by: Christian Heimes <christian@python.org> | ||||
| * | bpo-32331: Fix socket.type when SOCK_NONBLOCK is available (#4877) | Yury Selivanov | 2017-12-19 | 1 | -0/+22 |
| | | |||||
| * | bpo-27584: New addition of vSockets to the python socket module (#2489) | caavery | 2017-09-06 | 1 | -0/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bpo-27584: New addition of vSockets to the python socket module Support for AF_VSOCK on Linux only * bpo-27584: Fixes for V2 Fixed syntax and naming problems. Fixed #ifdef AF_VSOCK checking Restored original aclocal.m4 * bpo-27584: Fixes for V3 Added checking for fcntl and thread modules. * bpo-27584: Fixes for V4 Fixed white space error * bpo-27584: Fixes for V5 Added back comma in (CID, port). * bpo-27584: Fixes for V6 Added news file. socket.rst now reflects first Linux introduction of AF_VSOCK. Fixed get_cid in test_socket.py. Replaced PyLong_FromLong with PyLong_FromUnsignedLong in socketmodule.c Got rid of extra AF_VSOCK #define. Added sockaddr_vm to sock_addr. * bpo-27584: Fixes for V7 Minor cleanup. * bpo-27584: Fixes for V8 Put back #undef AF_VSOCK as it is necessary when vm_sockets.h is not installed. | ||||
| * | bpo-30987 - Support for ISO-TP protocol in SocketCAN (#2956) | Pier-Yves Lessard | 2017-08-28 | 1 | -3/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added support for CAN_ISOTP protocol * Added unit tests for CAN ISOTP * Updated documentation for ISO-TP protocol * Removed trailing whitespace in documentation * Added blurb NEWS.d file * updated Misc/ACKS * Fixed broken unit test that was using isotp const outside of skippable section * Removed dependecy over third party project * Added implementation for getsockname + unit tests * Missing newline at end of ACKS file * Accidentally inserted a type in ACKS file * Followed tiran changes review #1 recommendations * Added spaces after comma | ||||
| * | bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) | Nathaniel J. Smith | 2017-03-23 | 1 | -0/+3 |
| | | | | | | * Provide socket.TCP_NOTSENT_LOWAT * New TCP option available on recent MacOS and Linux. * Document addition of TCP_NOTSENT_LOWAT | ||||
| * | Merge 3.6 | Victor Stinner | 2017-01-23 | 1 | -2/+2 |
| |\ | |||||
| | * | Issue #26273: Document TCP_USER_TIMEOUT and TCP_CONGESTION | Victor Stinner | 2017-01-23 | 1 | -2/+2 |
| | | | |||||
| * | | Merge doc fixes from 3.6 | Martin Panter | 2017-01-14 | 1 | -2/+2 |
| |\ \ | |/ | |||||
| | * | Merge doc fixes from 3.5 | Martin Panter | 2017-01-14 | 1 | -2/+2 |
| | |\ | |||||
| | | * | Avoid line breaks after hyphens, otherwise they are turned into spaces | Martin Panter | 2017-01-14 | 1 | -2/+2 |
| | | | | |||||
| * | | | Issue #21818: Fixed references to classes that have names matching with module | Serhiy Storchaka | 2016-12-02 | 1 | -1/+1 |
| |\ \ \ | |/ / | | | | | | | names. | ||||
| | * | | Issue #21818: Fixed references to classes that have names matching with module | Serhiy Storchaka | 2016-12-02 | 1 | -1/+1 |
| | |\ \ | | |/ | | | | | | | names. | ||||
| | | * | Issue #21818: Fixed references to classes that have names matching with module | Serhiy Storchaka | 2016-12-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | names. | ||||
| * | | | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -2/+2 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -2/+2 |
| | |\ \ | | |/ | |||||
| * | | | Issue #28332: Deprecated silent truncations in socket.htons and socket.ntohs. | Serhiy Storchaka | 2016-10-02 | 1 | -0/+12 |
| |/ / | | | | | | | Original patch by Oren Milman. | ||||
| * | | Merge: #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. | R David Murray | 2016-09-07 | 1 | -0/+2 |
| |\ \ | |/ | |||||
| | * | #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. | R David Murray | 2016-09-07 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #27744: correct comment and markup | Christian Heimes | 2016-09-05 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module. | Christian Heimes | 2016-09-05 | 1 | -6/+49 |
| | | | |||||
| * | | #26907: add some missing getsockopt constants. | R David Murray | 2016-08-24 | 1 | -0/+4 |
| | | | | | | | | | Patch by Christian Heimes, reviewed by Martin Panter. | ||||
| * | | Issue #27626: Merge spelling fixes from 3.5 | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | | | | | | Based on patch by Ville Skyttä. | ||||
| * | | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by ↵ | Steve Dower | 2016-06-17 | 1 | -1/+12 |
| | | | | | | | | | Daniel Stokes. | ||||
| * | | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
| |\ \ | |/ | |||||
| | * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
| | | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
| * | | Issue #19234: Merge from 3.5 | Kushal Das | 2016-06-04 | 1 | -3/+2 |
| |\ \ | |/ | |||||
| | * | Issue #19234: Documents socket.fileno() returns -1 on failure | Kushal Das | 2016-06-04 | 1 | -3/+2 |
| | | | |||||
| * | | Issue #24911: Merge socket context manager doc from 3.5 | Martin Panter | 2016-04-24 | 1 | -27/+27 |
| |\ \ | |/ | |||||
| | * | Issue #24911: All socket objects are context managers; update examples | Martin Panter | 2016-04-24 | 1 | -27/+27 |
| | | | |||||
| * | | Issue #26685: Raise OSError if closing a socket fails | Martin Panter | 2016-04-11 | 1 | -0/+4 |
| |/ | |||||
| * | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -1/+1 |
| | | | | | to SilentGhost for the patch. | ||||
| * | Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. | Georg Brandl | 2016-02-25 | 1 | -3/+3 |
| | | |||||
| * | Issue #16915: Clarify that mode parameter of socket.makefile() does not accept | Berker Peksag | 2016-02-18 | 1 | -1/+2 |
| | | | | | the same values as open(). | ||||
| * | Fix a markup error in socket.rst | Berker Peksag | 2016-01-30 | 1 | -1/+1 |
| | | |||||
| * | Issue #5626: Remove misleading comment from socket.gethostname() documentation | Berker Peksag | 2016-01-20 | 1 | -5/+0 |
| | | | | | | | A machine can have more than one IP addresses so socket.gethostbyname(socket.gethostname()) probably won't return the correct one. | ||||
| * | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| |\ | |||||
| | * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -2/+2 |
| | | | |||||
| * | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| |\ \ | |/ | |||||
| | * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
| * | | Issue #16802: Document fileno parameter of socket.socket() | Berker Peksag | 2015-10-08 | 1 | -1/+5 |
| |\ \ | |/ | | | | | Patch by Henrik Heimbuerger and Bar Harel. | ||||
