1. cf40a9e Issue #23450: Fix signal.set_wakeup_fd() on Windows by Victor Stinner · 10 years ago
  2. 385efb4 Merge 3.4 (faulthandler) by Victor Stinner · 10 years ago
  3. 7a5567a Issue #23433: Fix faulthandler._stack_overflow() by Victor Stinner · 10 years ago
  4. eb6b554 Update copyright. by Raymond Hettinger · 10 years ago
  5. 5ef01e9 merge 3.4 (#23361) by Benjamin Peterson · 10 years ago
  6. 22ef9f7 merge 3.3 (#23361) by Benjamin Peterson · 10 years ago
  7. 8ce6806 add overflow checking (closes #23361) by Benjamin Peterson · 10 years ago
  8. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 10 years ago
  9. 6cfb61f Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 10 years ago
  10. b518134 Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 10 years ago
  11. a7559c0 Issue #14203: Temporary fix for the compile failure on Windows. by Stefan Krah · 10 years ago
  12. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 10 years ago
  13. 38c30e6 Issue #15381: Fixed a bug in BytesIO.write(). by Serhiy Storchaka · 10 years ago
  14. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 10 years ago
  15. b9765ee Issue #15381: Try to fix refcount bug. Empty and 1-byte buffers are always shared. by Serhiy Storchaka · 10 years ago
  16. 87d0b45 Issue #15381: Optimized io.BytesIO to make less allocations and copyings. by Serhiy Storchaka · 10 years ago
  17. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 10 years ago
  18. 32ca3dc Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 10 years ago
  19. c057c38 Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 10 years ago
  20. 7a27c97 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  21. b5e8e57 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  22. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  23. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  24. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  25. 0e259f1 Optimization guides suggest copying memory in an ascending direction when possible. by Raymond Hettinger · 10 years ago
  26. 5d0bb85 merge 3.4 (#23364, #23363) by Benjamin Peterson · 10 years ago
  27. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 10 years ago
  28. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  29. 38d9772 merge 3.4 (#23365) by Benjamin Peterson · 10 years ago
  30. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 10 years ago
  31. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  32. 4db56d5 merge 3.4 (#23366) by Benjamin Peterson · 10 years ago
  33. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 10 years ago
  34. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  35. 71cf91c merge 3.4 (#23369) by Benjamin Peterson · 10 years ago
  36. 3675cd9 merge 3.3 (#23369) by Benjamin Peterson · 10 years ago
  37. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 10 years ago
  38. 2e6658b Merge from 3.4. by Stefan Krah · 10 years ago
  39. 7213fcc Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 10 years ago
  40. 363af44 Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity by Stefan Krah · 10 years ago
  41. bd4976b Always #define _PyLong_FromDev as we always need it to compile rather than by Gregory P. Smith · 10 years ago
  42. 702dada Always #define _PyLong_FromDev as we always need it to compile rather than by Gregory P. Smith · 10 years ago
  43. c54de47 ifdef our way to compatibility with old openssl (closes #23335) by Benjamin Peterson · 10 years ago
  44. 07f0515 disable ALPN on LibreSSL, which has a large version number, but not ALPN support (closes #23329) by Benjamin Peterson · 10 years ago
  45. 3bf8684 Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
  46. 498b1f6 asyncio, _overlapped.ConnectPipe(): release the GIL by Victor Stinner · 10 years ago
  47. c27a8af Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
  48. 41063d2 asyncio, Tulip issue 204: Fix IocpProactor.recv() by Victor Stinner · 10 years ago
  49. 47efb4a Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. by Serhiy Storchaka · 10 years ago
  50. 7d0e0c9 Closes #23253: Delay-load ShellExecute by Steve Dower · 10 years ago
  51. 8861502 prefer server alpn ordering over the client's by Benjamin Peterson · 10 years ago
  52. cca2732 add support for ALPN (closes #20188) by Benjamin Peterson · 10 years ago
  53. 5da0549 Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
  54. 2b77c54 asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() by Victor Stinner · 10 years ago
  55. 58c8514 Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
  56. 7ffa2c5 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() by Victor Stinner · 10 years ago
  57. 91d11bb Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
  58. d0a28de Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() by Victor Stinner · 10 years ago
  59. b4826c3 Merge with 3.4 (closes #23280) by Zachary Ware · 10 years ago
  60. b176d40 Issue #23280: Fix docstrings for binascii.(un)hexlify by Zachary Ware · 10 years ago
  61. 3b225d8 Issue #23248: Update ssl error codes from latest OpenSSL git master. by Antoine Pitrou · 10 years ago
  62. 173ad83 Issue #23248: Update ssl error codes from latest OpenSSL git master. by Antoine Pitrou · 10 years ago
  63. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  64. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  65. acdb7c1 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 10 years ago
  66. b2653b3 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 10 years ago
  67. 26795ba Issue #15955: Add an option to limit output size when decompressing LZMA data. by Antoine Pitrou · 10 years ago
  68. 610bc6a merge 3.4 (#23221) by Benjamin Peterson · 10 years ago
  69. 82f34ad fix instances of consecutive articles (closes #23221) by Benjamin Peterson · 10 years ago
  70. dc3eaa8 Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the default case of ``ensure_ascii=True``. Patch by Naoki Inada. by Antoine Pitrou · 10 years ago
  71. cc8617b Issue #21092: Merge from 3.4. by Mark Dickinson · 10 years ago
  72. dfe0b23 Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians. by Mark Dickinson · 10 years ago
  73. a5d0c7c Issue #23185: add math.inf and math.nan constants. by Mark Dickinson · 10 years ago
  74. baf7c1e use SSL_get_session by Benjamin Peterson · 10 years ago
  75. 4cb1781 expose the client's cipher suites from the handshake (closes #23186) by Benjamin Peterson · 10 years ago
  76. 582acb7 Merge issue 19548 changes from 3.4 by Nick Coghlan · 10 years ago
  77. b9fdb7a Issue 19548: update codecs module documentation by Nick Coghlan · 10 years ago
  78. fcfed19 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  79. bc26646 Issue #23143: Remove compatibility with OpenSSLs older than 0.9.8. by Antoine Pitrou · 10 years ago
  80. 5e8430d Issue #23143: Remove compatibility with OpenSSLs older than 0.9.8. by Antoine Pitrou · 10 years ago
  81. 98beb75 merge 3.4 (#23093) by Benjamin Peterson · 10 years ago
  82. 10e76b6 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 10 years ago
  83. 2a8ef68 Issue #22733: MSVC ffi_prep_args doesn't handle 64-bit arguments properly by Steve Dower · 10 years ago
  84. 707b5cc Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EX by Serhiy Storchaka · 10 years ago
  85. 01bdd9a Issue #15513: Added a __sizeof__ implementation for pickle classes. by Serhiy Storchaka · 10 years ago
  86. 5bbd231 Issue #15513: Added a __sizeof__ implementation for pickle classes. by Serhiy Storchaka · 10 years ago
  87. e32467c allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 10 years ago
  88. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  89. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  90. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  91. 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
  92. 22293df merge 3.4 (#22935) by Benjamin Peterson · 10 years ago
  93. cbc18f3 Issue #9647: os.confstr() ensures that the second call to confstr() returns the by Victor Stinner · 10 years ago
  94. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  95. 4954f9f Issue #17401: Output the closefd attribute as boolean. by Serhiy Storchaka · 10 years ago
  96. 6cd5eda Fix uninitialized variable after #22676. by Antoine Pitrou · 10 years ago
  97. 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  98. beeb512 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  99. 8007cbc Issue 22940: fixes to editline support by Ned Deily · 10 years ago
  100. d1e22ba only support append_history if readline has it by Benjamin Peterson · 10 years ago