| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|\ |
|
| * | remove assignment in conditional | 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 #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 | -3/+3 |
|\ \
| |/ |
|
| * | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -3/+3 |
|
|
* | | 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 | -2/+9 |
|\ \
| |/ |
|
| * | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError | Victor Stinner | 2014-07-26 | 1 | -2/+9 |
|
|
* | | 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 | -4/+4 |
|\ \
| |/ |
|
| * | Fix typo in socket.getaddrinfo() docstring. | Berker Peksag | 2014-06-30 | 1 | -4/+4 |
|
|
* | | 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 #10141, Issue 20065: Changed #if to take CAN_RAW into account. | Vinay Sajip | 2014-03-21 | 1 | -1/+1 |
|
|