| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT | Martin Panter | 2016-11-14 | 1 | -1/+3 |
* | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -5/+6 |
* | Issue #27895: Spelling fixes (Contributed by Ville Skytt?). | Martin Panter | 2016-09-07 | 1 | -1/+1 |
* | socket: use INVALID_SOCKET | Victor Stinner | 2016-07-22 | 1 | -5/+6 |
* | socket: Fix internal_select() | Victor Stinner | 2016-07-22 | 1 | -1/+1 |
* | Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls on | Ned Deily | 2016-02-23 | 1 | -4/+10 |
* | Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS X | Ned Deily | 2016-02-15 | 1 | -2/+18 |
* | Windows: Decode hostname from ANSI code page | Victor Stinner | 2016-01-28 | 1 | -2/+24 |
* | Close #24784: Fix compilation without thread support | Victor Stinner | 2015-10-11 | 1 | -0/+2 |
* | Merge 3.4 | Victor Stinner | 2015-09-11 | 1 | -508/+811 |
|\ |
|
| * | Issue #24732, #23834: Fix sock_accept_impl() on Windows | Victor Stinner | 2015-07-27 | 1 | -0/+5 |
| * | Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. | Larry Hastings | 2015-04-13 | 1 | -0/+3 |
| * | Issue #23618: Fix internal_select() for negative timeout (blocking socket) when | Victor Stinner | 2015-04-09 | 1 | -4/+9 |
| * | Issue #23834: Fix the default socket timeout | Victor Stinner | 2015-04-09 | 1 | -1/+2 |
| * | Issue #22117: Fix sock_call_ex() for non-blocking socket | Victor Stinner | 2015-04-06 | 1 | -1/+1 |
| * | Issue #23853: socket.socket.sendall() does no more reset the socket timeout | Victor Stinner | 2015-04-06 | 1 | -16/+41 |
| * | Issue #23834: Fix initial value of the socket timeout | Victor Stinner | 2015-04-06 | 1 | -2/+2 |
| * | Issue #23834: Simplify timeout handling | Victor Stinner | 2015-04-03 | 1 | -27/+13 |
| * | Issue #23618: Ooops, remove abort() added for debug purpose | Victor Stinner | 2015-04-02 | 1 | -1/+0 |
| * | Issue #23618: Fix sock_connect_impl(), set the socket error code | Victor Stinner | 2015-04-02 | 1 | -1/+7 |
| * | Issue #23618: socket.socket.connect() now waits until the connection completes | Victor Stinner | 2015-04-02 | 1 | -124/+178 |
| * | Issue #23618: Don't declare recvmsg/sendmsg helper functions on Windows | Victor Stinner | 2015-04-02 | 1 | -7/+6 |
| * | Issue #23834: Fix sock_call(), set deadline_initialized to recompute the timeout | Victor Stinner | 2015-04-02 | 1 | -0/+1 |
| * | Issue #23834: Modify socket.sendall() to reuse sock_call() with | Victor Stinner | 2015-04-01 | 1 | -29/+21 |
| * | Issue #23834: Add sock_call() helper function | Victor Stinner | 2015-04-01 | 1 | -256/+323 |
| * | merge 3.4 | Benjamin Peterson | 2015-04-01 | 1 | -1/+2 |
| |\ |
|
| * | | Issue #23618: Fix EINTR handling on Windows | Victor Stinner | 2015-04-01 | 1 | -2/+2 |
| * | | Issue #23618: Enhance EINTR handling in socket.connect() | Victor Stinner | 2015-03-31 | 1 | -35/+37 |
| * | | Issue #23618: Fix EINTR handling in socket.connect() | Victor Stinner | 2015-03-31 | 1 | -10/+8 |
| * | | Issue #23618: Cleanup internal_connect() in socketmodule.c | Victor Stinner | 2015-03-31 | 1 | -3/+1 |
| * | | Issue #23618: Refactor internal_connect() | Victor Stinner | 2015-03-31 | 1 | -79/+30 |
| * | | Issue #23618: Refactor internal_connect() | Victor Stinner | 2015-03-31 | 1 | -35/+57 |
| * | | Issue #22117: Fix integer overflow check in socket_parse_timeout() on Windows | Victor Stinner | 2015-03-31 | 1 | -3/+6 |
| * | | Issue #23618: Fix internal_connect_select() | Victor Stinner | 2015-03-31 | 1 | -1/+1 |
| * | | Issue #23618: internal_connect_select() now waits also for error events | Victor Stinner | 2015-03-31 | 1 | -6/+15 |
| * | | Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTR | Victor Stinner | 2015-03-31 | 1 | -13/+23 |
| * | | Issue #23618: Refactor the _socket module | Victor Stinner | 2015-03-31 | 1 | -17/+11 |
| * | | Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING | Victor Stinner | 2015-03-30 | 1 | -6/+7 |
| * | | Issue #22117: Fix usage of _PyTime_AsTimeval() | Victor Stinner | 2015-03-30 | 1 | -6/+2 |
| * | | Issue #22117: The socket module uses _PyTime_t timestamp for timeouts | Victor Stinner | 2015-03-28 | 1 | -90/+123 |
| * | | Issue #23618, #22117: refactor socketmodule.c | Victor Stinner | 2015-03-27 | 1 | -83/+113 |
| * | | Fix compiler warnings: comparison between signed and unsigned numbers | Victor Stinner | 2015-03-20 | 1 | -1/+1 |
| * | | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and | Serhiy Storchaka | 2015-03-20 | 1 | -47/+60 |
| * | | 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 |