| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | | Issue #23646: Enhance precision of time.sleep() and socket timeout when | Victor Stinner | 2015-03-20 | 1 | -1/+1 |
| * | | Fixed GCC version testing. | Serhiy Storchaka | 2015-03-05 | 1 | -2/+2 |
| * | | Fix "GCC diagnostic" in socketmodule.c | Victor Stinner | 2015-03-05 | 1 | -2/+2 |
| * | | Silenced minor GCC warnings. | Serhiy Storchaka | 2015-02-26 | 1 | -0/+7 |
| * | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 1 | -2/+4 |
| |\ \ |
|
| * | | | Issue #23285: PEP 475 -- Retry system calls failing with EINTR. | Charles-Fran?ois Natali | 2015-02-07 | 1 | -112/+127 |
| * | | | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ... | Steve Dower | 2014-11-22 | 1 | -1/+10 |
| * | | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -32/+102 |
| |\ \ \ |
|
| | * | | | Issue #22378: socket module: add SO_MARK. | Charles-Fran?ois Natali | 2014-09-18 | 1 | -0/+3 |
| | * | | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytes | Serhiy Storchaka | 2014-09-06 | 1 | -1/+1 |
| | * | | | Issue #22043: time.monotonic() is now always available | Victor Stinner | 2014-09-02 | 1 | -2/+2 |
| | * | | | Issue #22218: Fix "comparison between signed and unsigned integers" warnings in | Victor Stinner | 2014-08-17 | 1 | -5/+6 |
| | * | | | Issue #22127: fix typo. | Martin v. L?wis | 2014-08-05 | 1 | -1/+1 |
| | * | | | Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for numeri... | Martin v. L?wis | 2014-08-05 | 1 | -10/+75 |
| | * | | | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail with | Victor Stinner | 2014-07-26 | 1 | -16/+17 |
| | |\ \ \ |
|
| | | * | | | Issue #22042: Avoid dangerous C cast in socket.setblocking() | Victor Stinner | 2014-07-23 | 1 | -2/+5 |
| | | * | | | Fix typo in socket.getaddrinfo() docstring. | Berker Peksag | 2014-06-30 | 1 | -14/+12 |
| | | |\ \ \ |
|
| | | | * | | | All modern compilers provide a offsetof() function | Victor Stinner | 2014-06-03 | 1 | -4/+0 |
| | | | * | | | Issue #21455: Add a default backlog to socket.listen(). | Charles-Fran?ois Natali | 2014-05-22 | 1 | -10/+12 |
* | | | | | | | Issue #24684: socket.socket.getaddrinfo() now calls | Victor Stinner | 2015-09-11 | 1 | -3/+1 |
* | | | | | | | Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the | Victor Stinner | 2015-04-02 | 1 | -1/+2 |
| |_|_|_|_|/
|/| | | | | |
|
* | | | | | | remove assignment in conditional | Benjamin Peterson | 2015-04-01 | 1 | -1/+2 |
| |_|_|_|/
|/| | | | |
|
* | | | | | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 1 | -2/+4 |
|/ / / / |
|
* | | | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -3/+3 |
|/ / / |
|
* | | | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError | Victor Stinner | 2014-07-26 | 1 | -2/+9 |
|/ / |
|
* | | Fix typo in socket.getaddrinfo() docstring. | Berker Peksag | 2014-06-30 | 1 | -4/+4 |
|/ |
|
* | Issue #10141, Issue 20065: Changed #if to take CAN_RAW into account. | Vinay Sajip | 2014-03-21 | 1 | -1/+1 |
* | Issue #10141: updated new usages of AF_CAN to be in #ifdef AF_CAN rather than... | Vinay Sajip | 2014-03-20 | 1 | -3/+3 |
* | Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the | Charles-Fran?ois Natali | 2014-02-08 | 1 | -578/+767 |
|\ |
|
| * | merge 3.3 (#20251) | Benjamin Peterson | 2014-01-14 | 1 | -578/+767 |
| |\ |
|
| | * | merge 3.3 (#20246) | Benjamin Peterson | 2014-01-13 | 1 | -0/+5 |
| | * | Issue #12837: Silence a Clang compiler warning on OS X. | Brett Cannon | 2014-01-07 | 1 | -1/+15 |
| | * | Issue #16136: Remove VMS support and VMS-related code | Christian Heimes | 2013-12-21 | 1 | -98/+8 |
| | * | Fix broken docstring continuation line for detach(). | Guido van Rossum | 2013-12-04 | 1 | -2/+2 |
| | * | Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket | Victor Stinner | 2013-12-04 | 1 | -8/+10 |
| | * | add SO_PRIORITY (closes #19802) | Benjamin Peterson | 2013-11-27 | 1 | -0/+3 |
| | * | Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not | Victor Stinner | 2013-11-16 | 1 | -8/+8 |
| | * | Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching implem... | Jason R. Coombs | 2013-11-10 | 1 | -1/+5 |
| | * | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to... | Atsuo Ishimoto | 2012-07-16 | 1 | -2/+106 |
| | * | Re #18521: remove assignments of variables that are immediately reassigned. | Georg Brandl | 2013-10-14 | 1 | -1/+1 |
| | * | Issue #16201: socket: Use inet_pton()/inet_addr() instead of ad-hoc parsing for | Charles-Fran?ois Natali | 2013-09-13 | 1 | -17/+52 |
| | * | Use INADDR_BROADCAST instead of hard-coded value (it's part of POSIX and | Charles-Fran?ois Natali | 2013-08-31 | 1 | -1/+1 |
| | * | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-28 | 1 | -22/+189 |
| | * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -4/+4 |
| | |\ |
|
| | * \ | Issue #18549: Eliminate dead code in socket_ntohl(). | Christian Heimes | 2013-07-25 | 1 | -432/+382 |
| | |\ \ |
|
| | | * | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. | Victor Stinner | 2013-06-25 | 1 | -4/+4 |
| | | * | | Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methods | Victor Stinner | 2013-06-24 | 1 | -5/+32 |
| | | * | | Issue #18259: Declare sethostname in socketmodule.c for AIX | Christian Heimes | 2013-06-19 | 1 | -427/+350 |
| | | |\ \ |
|
| | | | * \ | (3.3->default) Ensure that the fix for #17269 also works on OSX 10.4 | Ronald Oussoren | 2013-06-10 | 1 | -427/+350 |
| | | | |\ \ |
|
| | | | | * | | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros | Victor Stinner | 2013-06-04 | 1 | -5/+2 |