1. f9fdfa7 Merge 3.4 by Victor Stinner · 9 years ago
  2. ec1a498 Issue #24684: socket.socket.getaddrinfo() now calls by Victor Stinner · 9 years ago
  3. bea232a Issue #24732, #23834: Fix sock_accept_impl() on Windows by Victor Stinner · 9 years ago
  4. a6cc551 Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. by Larry Hastings · 9 years ago
  5. ced1174 Issue #23618: Fix internal_select() for negative timeout (blocking socket) when by Victor Stinner · 9 years ago
  6. 88ed640 Issue #23834: Fix the default socket timeout by Victor Stinner · 9 years ago
  7. 222dfc7 Issue #22117: Fix sock_call_ex() for non-blocking socket by Victor Stinner · 9 years ago
  8. 8912d14 Issue #23853: socket.socket.sendall() does no more reset the socket timeout by Victor Stinner · 9 years ago
  9. 9001d80 Issue #23834: Fix initial value of the socket timeout by Victor Stinner · 9 years ago
  10. 10550cd Issue #23834: Simplify timeout handling by Victor Stinner · 9 years ago
  11. a135cb8 Issue #23618: Ooops, remove abort() added for debug purpose by Victor Stinner · 9 years ago
  12. 38aec75 Issue #23618: Fix sock_connect_impl(), set the socket error code by Victor Stinner · 9 years ago
  13. 81c41db Issue #23618: socket.socket.connect() now waits until the connection completes by Victor Stinner · 9 years ago
  14. 35bee93 Issue #23618: Don't declare recvmsg/sendmsg helper functions on Windows by Victor Stinner · 9 years ago
  15. ff444e8 Issue #23834: Fix sock_call(), set deadline_initialized to recompute the timeout by Victor Stinner · 9 years ago
  16. 02f32ab Issue #23834: Modify socket.sendall() to reuse sock_call() with sock_send_impl() by Victor Stinner · 9 years ago
  17. 31bf2d5 Issue #23834: Add sock_call() helper function by Victor Stinner · 9 years ago
  18. 81541f4 merge 3.4 by Benjamin Peterson · 9 years ago
  19. 4fd929b remove assignment in conditional by Benjamin Peterson · 9 years ago
  20. a772662 Issue #23618: Fix EINTR handling on Windows by Victor Stinner · 9 years ago
  21. 70a46f6 Issue #23618: Enhance EINTR handling in socket.connect() by Victor Stinner · 9 years ago
  22. ee699e9 Issue #23618: Fix EINTR handling in socket.connect() by Victor Stinner · 9 years ago
  23. c4e819a Issue #23618: Cleanup internal_connect() in socketmodule.c by Victor Stinner · 9 years ago
  24. b6c15bc Issue #23618: Refactor internal_connect() by Victor Stinner · 9 years ago
  25. dd88d3d Issue #23618: Refactor internal_connect() by Victor Stinner · 9 years ago
  26. 1bb0aef Issue #22117: Fix integer overflow check in socket_parse_timeout() on Windows by Victor Stinner · 9 years ago
  27. dd83bd2 Issue #23618: Fix internal_connect_select() by Victor Stinner · 9 years ago
  28. 416f2e6 Issue #23618: internal_connect_select() now waits also for error events by Victor Stinner · 9 years ago
  29. e6951c6 Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTR by Victor Stinner · 9 years ago
  30. 391fa71 Issue #23618: Refactor the _socket module by Victor Stinner · 9 years ago
  31. 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 9 years ago
  32. ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  33. 71694d5 Issue #22117: The socket module uses _PyTime_t timestamp for timeouts by Victor Stinner · 9 years ago
  34. b7df314 Issue #23618, #22117: refactor socketmodule.c by Victor Stinner · 9 years ago
  35. f50e187 Fix compiler warnings: comparison between signed and unsigned numbers by Victor Stinner · 9 years ago
  36. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 9 years ago
  37. 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 9 years ago
  38. caa01f8 Fixed GCC version testing. by Serhiy Storchaka · 9 years ago
  39. a4c7271 Fix "GCC diagnostic" in socketmodule.c by Victor Stinner · 9 years ago
  40. b48af34 Silenced minor GCC warnings. by Serhiy Storchaka · 9 years ago
  41. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  42. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  43. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  44. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  45. 65e4cb1 Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), which will be used for the official 3.5 release. by Steve Dower · 10 years ago
  46. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  47. ea07eb9 Issue #22378: socket module: add SO_MARK. by Charles-François Natali · 10 years ago
  48. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  49. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  50. 1a62a68 Issue #22218: Fix "comparison between signed and unsigned integers" warnings in by Victor Stinner · 10 years ago
  51. 17fd1e1 Issue #22127: fix typo. by Martin v. Löwis · 10 years ago
  52. eb1c28a Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for numeric IPs). by Martin v. Löwis · 10 years ago
  53. 011428e (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail with by Victor Stinner · 10 years ago
  54. e254e53 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError by Victor Stinner · 10 years ago
  55. b6dab6b Issue #22042: Avoid dangerous C cast in socket.setblocking() by Victor Stinner · 10 years ago
  56. d9375f1 Fix typo in socket.getaddrinfo() docstring. by Berker Peksag · 10 years ago
  57. a6ec5ee Fix typo in socket.getaddrinfo() docstring. by Berker Peksag · 10 years ago
  58. 8e44aa5 Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store the by Victor Stinner · 9 years ago
  59. ef7f140 All modern compilers provide a offsetof() function by Victor Stinner · 10 years ago
  60. 644b8f5 Issue #21455: Add a default backlog to socket.listen(). by Charles-François Natali · 10 years ago
  61. ed6783f Issue #10141, Issue 20065: Changed #if to take CAN_RAW into account. by Vinay Sajip · 10 years ago
  62. ecfc98c Issue #10141: updated new usages of AF_CAN to be in #ifdef AF_CAN rather than #ifdef HAVE_LINUX_CAN_H to allow compilation on older Linuxes. by Vinay Sajip · 10 years ago
  63. 4025ac7 Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the by Charles-François Natali · 10 years ago
  64. b4062e8 Issue #20065: socketmodule: Fix build error when AF_CAN is defined without the by Charles-François Natali · 10 years ago
  65. 901acb4 merge 3.3 (#20251) by Benjamin Peterson · 11 years ago
  66. a677d76 remove overly strict assertion (closes #20251) by Benjamin Peterson · 11 years ago
  67. c6b37e2 merge 3.3 (#20246) by Benjamin Peterson · 11 years ago
  68. 5688222 merge 3.2 (#20246) by Benjamin Peterson · 11 years ago
  69. fbf648e complain when nbytes > buflen to fix possible buffer overflow (closes #20246) by Benjamin Peterson · 11 years ago
  70. b05cbe6 Issue #12837: Silence a Clang compiler warning on OS X. by Brett Cannon · 11 years ago
  71. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  72. 638aebd Fix broken docstring continuation line for detach(). by Guido van Rossum · 11 years ago
  73. 9a95483 Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket by Victor Stinner · 11 years ago
  74. 1314ef7 add SO_PRIORITY (closes #19802) by Benjamin Peterson · 11 years ago
  75. e990c6e Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not by Victor Stinner · 11 years ago
  76. 8ec784c Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching implementation for Unix). by Jason R. Coombs · 11 years ago
  77. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  78. 9228837 Issue #18549: Eliminate dead code in socket_ntohl(). CID 982369 by Christian Heimes · 11 years ago
  79. d2774c7 Issue #18259: Declare sethostname in socketmodule.c for AIX by Christian Heimes · 11 years ago
  80. a822d366 Ensure that the fix for #17269 also works on OSX 10.4 by Ronald Oussoren · 11 years ago
  81. a534fc4 Close #18109: os.uname() now decodes fields from the locale encoding, and by Victor Stinner · 11 years ago
  82. 27a4ac5 Issue #17269: Workaround for a platform bug in getaddrinfo on OSX by Ronald Oussoren · 11 years ago
  83. 18b7191 C89 declaration compliance by Benjamin Peterson · 11 years ago
  84. 0f84764 Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  85. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  86. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  87. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  88. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  89. 15b6885 Make sure that *really* no more than sizeof(ifr.ifr_name) chars are strcpy-ed to ifr.ifr_name and that the string is *always* NUL terminated. New code shouldn't use strcpy(), too. CID 719692 by Christian Heimes · 12 years ago
  90. c53eb9d Merge 3.2 to default by Andrew Svetlov · 12 years ago
  91. d182a6c Modules/socketmodule.c: netdb_lock: define static. by Matthias Klose · 12 years ago
  92. da0fc14 Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to socket module. by Atsuo Ishimoto · 12 years ago
  93. 6083a4b Re #18521: remove assignments of variables that are immediately reassigned. by Georg Brandl · 11 years ago
  94. 0cc8685 Issue #16201: socket: Use inet_pton()/inet_addr() instead of ad-hoc parsing for by Charles-François Natali · 11 years ago
  95. 24aa041 Use INADDR_BROADCAST instead of hard-coded value (it's part of POSIX and by Charles-François Natali · 11 years ago
  96. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  97. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  98. 7c8cd25 Issue #18549: Eliminate dead code in socket_ntohl(). CID 982369 by Christian Heimes · 11 years ago
  99. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  100. 9a644b2 Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methods by Victor Stinner · 11 years ago