1. 6fe2a75 Issue #16113: Add SHA-3 and SHAKE support to hashlib module. by Christian Heimes · 8 years ago
  2. dfb9ef1 blake2: silence two more warnings on platforms with size_t < uint64_t. Don't use SSE2 when cross-compiling by Christian Heimes · 8 years ago
  3. 680cb15 Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now by Serhiy Storchaka · 8 years ago
  4. 1194c6d issue20842 - null merge with 3.5 by Senthil Kumaran · 8 years ago
  5. 32d3742 [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". by Senthil Kumaran · 8 years ago
  6. 28aa4a0 Rename weighted_choices() to just choices() by Raymond Hettinger · 8 years ago
  7. c98b26a Issue #25596: Falls back to listdir in glob for bytes paths on Windows. by Serhiy Storchaka · 8 years ago
  8. 1de1a6a Issue #27905: Docs for typing.Type[C], by Michael Lee. (Merge 3.5->3.6) by Guido van Rossum · 8 years ago
  9. e848cd7 Issue #27905: Docs for typing.Type[C], by Michael Lee. by Guido van Rossum · 8 years ago
  10. 4b9abf3 merge 3.5 by Benjamin Peterson · 8 years ago
  11. 19ab0fd Issue #27731: Opt-out of MAX_PATH on Windows 10 by Steve Dower · 8 years ago
  12. 33d2a49 promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 8 years ago
  13. 437df90 get skipIf from the right place by Benjamin Peterson · 8 years ago
  14. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  15. 173a1f3 Fix test_os.GetRandomTests() by Victor Stinner · 8 years ago
  16. 6cebd48 Issue #27959: Updates NEWS and whatsnew by Steve Dower · 8 years ago
  17. 5a71327 Issue #27959: Documents new encoding and alias. by Steve Dower · 8 years ago
  18. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  19. 22d0698 Adds test.support.PGO and skips tests that are not useful for PGO. by Steve Dower · 8 years ago
  20. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  21. a439191 Fix some warnings from MSVC by Steve Dower · 8 years ago
  22. 35b40c6 merge 3.5 by Benjamin Peterson · 8 years ago
  23. 4a75760 do not memcpy from NULL by Benjamin Peterson · 8 years ago
  24. d519e02 Merge from 3.5 by Berker Peksag · 8 years ago
  25. a1bc246 Use shorter version of Connection.isolation_level in sqlite3.rst by Berker Peksag · 8 years ago
  26. 05448a6 merge 3.5 by Benjamin Peterson · 8 years ago
  27. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  28. cc554b6 Silence two warnings in blake2. key_length is between 0 and 64 (block size). by Christian Heimes · 8 years ago
  29. 32a2cee Bypass __get_openssl_constructor() and always use our own blake2 implementation by Christian Heimes · 8 years ago
  30. cd14d5d Correct a comment in the test referencing the wrong issue number (issue3100 by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  31. aee52cc Merge by Brett Cannon · 8 years ago
  32. bfeec22 Merge for #26359 by Brett Cannon · 8 years ago
  33. e8f1e00 Issue #18844: Add random.weighted_choices() by Raymond Hettinger · 8 years ago
  34. 8c94f97 Issue #26359: Add the --with-optimizations flag. by Brett Cannon · 8 years ago
  35. 63d98bc Issue #26359: Add the --with-optimizations configure flag. by Brett Cannon · 8 years ago
  36. 62ec331 Optimize unicode_escape and raw_unicode_escape by Victor Stinner · 8 years ago
  37. 9f2a920 Issue #27776: include process.h on Windows for getpid() by Victor Stinner · 8 years ago
  38. 2740e46 _PyUnicodeWriter: assert that max character <= MAX_UNICODE by Victor Stinner · 8 years ago
  39. c083476 Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  40. 653c850 Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  41. 3cdaaaf Add libpython*.dylib to .{hg,git}ignore by Zachary Ware · 8 years ago
  42. 7ba8337 Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again. by Christian Heimes · 8 years ago
  43. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  44. e256acc Issue #23226: Add linspace() recipe to the docs by Raymond Hettinger · 8 years ago
  45. 59a0464 Download hashlib test vectors from pythontest.net by Christian Heimes · 8 years ago
  46. eaecc69 Issue #27974: Remove importlib._bootstrap._ManageReload. by Brett Cannon · 8 years ago
  47. 9b1f474 Add os.getrandom() by Victor Stinner · 8 years ago
  48. 3580b03 Issue #21250: Merge from 3.5 by Berker Peksag · 8 years ago
  49. 4bf580d Issue #21250: Add tests for SQLite's ON CONFLICT clause by Berker Peksag · 8 years ago
  50. 2784c5b Darn you, Benjamin! by Brett Cannon · 8 years ago
  51. 7103ff9 merge heads by Benjamin Peterson · 8 years ago
  52. e644f5a Merge for #27872 doc changes by Brett Cannon · 8 years ago
  53. 6fa7aad Issue #26027, #27524: Document the support for path-like objects in os and os.path. by Brett Cannon · 8 years ago
  54. 0cf2238 merge 3.5 by Benjamin Peterson · 8 years ago
  55. 01c340d do not leak addrinfo in configure test by Benjamin Peterson · 8 years ago
  56. 581139c Run Argument Clinic on posixmodule.c by Victor Stinner · 8 years ago
  57. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  58. dc5a3fe Issue #26798: for loop initial declarations, take 3 by Christian Heimes · 8 years ago
  59. 9c2f304 Issue #26798: for loop initial declarations, take 2 by Christian Heimes · 8 years ago
  60. 8482ce4 Issue #21122: Fix LTO builds on OS X. Patch by Brett Cannon. by Ned Deily · 8 years ago
  61. b84fd04 Remove redundant bullet point in 3.6.rst by Berker Peksag · 8 years ago
  62. dfc853c shut up some perfectly innocent reST in hashlib-blake2 by Benjamin Peterson · 8 years ago
  63. c401881 Closes #27982: Allow keyword arguments to winsound functions by Zachary Ware · 8 years ago
  64. ef537db improve grammar by Benjamin Peterson · 8 years ago
  65. fe3c9c1 Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 8 years ago
  66. 1c03abd Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 8 years ago
  67. 87bf0fe Issue #26798: for loop initial declarations are only allowed in C99 or C11 mode by Christian Heimes · 8 years ago
  68. 90493ab Issue #25761: Improved error reporting about truncated pickle data in by Serhiy Storchaka · 8 years ago
  69. df6ff7b add back SIZEOF_UINTPTR_T by Benjamin Peterson · 8 years ago
  70. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  71. 3c397e4 Fix out-of-tree builds for blake2 by Christian Heimes · 8 years ago
  72. b9d9eed require uintptr_t to exist by Benjamin Peterson · 8 years ago
  73. d982c8f properly introduce reST literal blocks by Benjamin Peterson · 8 years ago
  74. 9b3d770 replace Python aliases for standard integer types with the standard integer types (#17884) by Benjamin Peterson · 8 years ago
  75. 88bd3ed only include inttypes.h (#17884) by Benjamin Peterson · 8 years ago
  76. 121b948 Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib. by Christian Heimes · 8 years ago
  77. 5d75f44 dtoa.c: remove code for platforms with 64-bit integers (#17884) by Benjamin Peterson · 8 years ago
  78. bbeedc2 include (now) int standard headers by Benjamin Peterson · 8 years ago
  79. f6b8c35 Merge heads by Serhiy Storchaka · 8 years ago
  80. 28ab634 Issue #25596: Optimized glob() and iglob() functions in the by Serhiy Storchaka · 8 years ago
  81. ae3869c do not need vcstdint.h anymore by Benjamin Peterson · 8 years ago
  82. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  83. 620bb27 remove an unanswered question by Benjamin Peterson · 8 years ago
  84. 4fe5510 require standard int types to be defined (#17884) by Benjamin Peterson · 8 years ago
  85. 39093e9 Issue #27928: Add scrypt (password-based key derivation function) to hashlib module (requires OpenSSL 1.1.0). by Christian Heimes · 8 years ago
  86. ac041c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 8 years ago
  87. 03d13c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 8 years ago
  88. d953f8e remove some silly defined() tests by Benjamin Peterson · 8 years ago
  89. 003e929 Prevents unnecessary help text appearing in doc build. by Steve Dower · 8 years ago
  90. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  91. 45c7514 merge 3.5 (#27969) by Benjamin Peterson · 8 years ago
  92. cbef66d suppress stderr output when checking gdb (closes #27969) by Benjamin Peterson · 8 years ago
  93. 582282b Issue 27866: relax get_cipher() test even more. Gentoo buildbot has no ECDHE by Christian Heimes · 8 years ago
  94. 407380f Issue 27744: skip test if AF_ALG socket bind fails by Christian Heimes · 8 years ago
  95. ea9b2dc Issue 27866: relax test case for set_cipher() and allow more cipher suites by Christian Heimes · 8 years ago
  96. c5c83d6 Issue #27960: Merge with 3.4 by Jason R. Coombs · 8 years ago
  97. 1f5fd64 Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by developed for Issue #12885. by Jason R. Coombs · 8 years ago
  98. 1bb0c0b explicitly cast away constness to silence compiler warning by Benjamin Peterson · 8 years ago
  99. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  100. ad8c83a Avoid inefficient way to call functions without argument by Victor Stinner · 8 years ago