1. 86a7668 Fixes issue #6766: Updated multiprocessing Proxy Objects to support nesting by Davin Potts · 8 years ago
  2. 1aa642f Issue #27993: Merge plural fixes from 3.5 by Martin Panter · 8 years ago
  3. 1c748f3 Issue #27570: Merge null pointer fixes from 3.5 by Martin Panter · 8 years ago
  4. 46d3a59 fix expected layout of code objects by Benjamin Peterson · 8 years ago
  5. 1badd28 Merge: #22233: Only split headers on \r and/or \n, per email RFCs. by R David Murray · 8 years ago
  6. 56b1f1b #27331: add policy keyword argument to all MIME subclasses. by R David Murray · 8 years ago
  7. 91afe7e Merge: 27988: Make sure iter_attachments does not mutate the payload list. by R David Murray · 8 years ago
  8. fe8f4c9 Issue #27959: Prevent ImportError from escaping codec search function by Steve Dower · 8 years ago
  9. c75abff merge 3.5 (closes #27968) by Benjamin Peterson · 8 years ago
  10. e2ffe29 new and exciting shutdown error on windows by Benjamin Peterson · 8 years ago
  11. 6fe2a75 Issue #16113: Add SHA-3 and SHAKE support to hashlib module. by Christian Heimes · 8 years ago
  12. 680cb15 Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now by Serhiy Storchaka · 8 years ago
  13. 28aa4a0 Rename weighted_choices() to just choices() by Raymond Hettinger · 8 years ago
  14. c98b26a Issue #25596: Falls back to listdir in glob for bytes paths on Windows. by Serhiy Storchaka · 8 years ago
  15. 437df90 get skipIf from the right place by Benjamin Peterson · 8 years ago
  16. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  17. 173a1f3 Fix test_os.GetRandomTests() by Victor Stinner · 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. 32a2cee Bypass __get_openssl_constructor() and always use our own blake2 implementation by Christian Heimes · 8 years ago
  22. 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
  23. e8f1e00 Issue #18844: Add random.weighted_choices() by Raymond Hettinger · 8 years ago
  24. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  25. 59a0464 Download hashlib test vectors from pythontest.net by Christian Heimes · 8 years ago
  26. eaecc69 Issue #27974: Remove importlib._bootstrap._ManageReload. by Brett Cannon · 8 years ago
  27. 9b1f474 Add os.getrandom() by Victor Stinner · 8 years ago
  28. 3580b03 Issue #21250: Merge from 3.5 by Berker Peksag · 8 years ago
  29. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  30. c401881 Closes #27982: Allow keyword arguments to winsound functions by Zachary Ware · 8 years ago
  31. 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
  32. 90493ab Issue #25761: Improved error reporting about truncated pickle data in by Serhiy Storchaka · 8 years ago
  33. 121b948 Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib. by Christian Heimes · 8 years ago
  34. 28ab634 Issue #25596: Optimized glob() and iglob() functions in the by Serhiy Storchaka · 8 years ago
  35. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  36. 39093e9 Issue #27928: Add scrypt (password-based key derivation function) to hashlib module (requires OpenSSL 1.1.0). by Christian Heimes · 8 years ago
  37. ac041c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 8 years ago
  38. 45c7514 merge 3.5 (#27969) by Benjamin Peterson · 8 years ago
  39. 582282b Issue 27866: relax get_cipher() test even more. Gentoo buildbot has no ECDHE by Christian Heimes · 8 years ago
  40. 407380f Issue 27744: skip test if AF_ALG socket bind fails by Christian Heimes · 8 years ago
  41. ea9b2dc Issue 27866: relax test case for set_cipher() and allow more cipher suites by Christian Heimes · 8 years ago
  42. b745f92 Issue #27355: Import no longer needed by Martin Panter · 8 years ago
  43. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  44. 56b4872 [merge from 3.5] - Update pkgutil docs to reference appropriate finder and loader object documentation. by Senthil Kumaran · 8 years ago
  45. 7eacdcc Issue #27748: Merge with 3.5 by Zachary Ware · 8 years ago
  46. 04960a2 Issue 27744: AES-CBC and DRBG need Kernel 3.19+ by Christian Heimes · 8 years ago
  47. a9ab165 os.access does not allow a fd by Benjamin Peterson · 8 years ago
  48. 4837141 Issue 27744: Check for AF_ALG support in Kernel by Christian Heimes · 8 years ago
  49. cefebf3 Issue #27748: Merge with 3.5 by Zachary Ware · 8 years ago
  50. 10108a7 Issue #27355: Removed support for Windows CE. It was never finished, by Larry Hastings · 8 years ago
  51. 25bfcd5 Issue #27866: Add SSLContext.get_ciphers() method to get a list of all enabled ciphers. by Christian Heimes · 8 years ago
  52. dffa394 Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module. by Christian Heimes · 8 years ago
  53. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  54. 01113fa Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  55. ae8298b Closes #11620: Fix support for SND_MEMORY in winsound.PlaySound. by Zachary Ware · 8 years ago
  56. 0e76e67 Closes #27748: Merge with 3.5 by Zachary Ware · 8 years ago
  57. ff79396 fix skipping #27921 for windows by Benjamin Peterson · 8 years ago
  58. 9802081 merge 3.5 (closes #27811) by Benjamin Peterson · 8 years ago
  59. 4847f31 Merge with 3.5 by Terry Jan Reedy · 8 years ago
  60. 27682d2 issue23591: more docs; slight change to repr by Ethan Furman · 8 years ago
  61. 6579502 Merge by Raymond Hettinger · 8 years ago
  62. 31ba1c3 Issue #27427: Additional tests for the math module. Thanks Francisco Couzo. by Mark Dickinson · 8 years ago
  63. 8574654 Issue #27953: skip failing math and cmath tests for tan on OS X 10.4. by Mark Dickinson · 8 years ago
  64. 96f774d Issue #26040: Improve test_math and test_cmath coverage and rigour. Thanks Jeff Allen. by Mark Dickinson · 8 years ago
  65. 06cf601 Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped. by Eric V. Smith · 8 years ago
  66. 7c4e409 Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens. by Mark Dickinson · 8 years ago
  67. 2500c98 Closes #27935: returned numeric value for 'FATAL' logging level. by Vinay Sajip · 8 years ago
  68. 44ac3c5 Merge upstream change. by Vinay Sajip · 8 years ago
  69. 1b8f7b8 Issue 27921: Remove backslash from another f-string. I'll revert this change before beta 2. by Eric V. Smith · 8 years ago
  70. 0a7b7e3 Fixes #27937: optimise code used in all logging calls. by Vinay Sajip · 8 years ago
  71. 6e02560 Issue 27921: Remove backslash from another f-string. by Eric V. Smith · 8 years ago
  72. 6a4efce Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts. by Eric V. Smith · 8 years ago
  73. 3b09cd6 Merge by Raymond Hettinger · 8 years ago
  74. 25d94bb issue23591: bool(empty_flags) == False; more docs & tests by Ethan Furman · 8 years ago
  75. 0443953 issue23591: optimize _high_bit() by Ethan Furman · 8 years ago
  76. 1a05d6c PEP 7 style for if/else in C by Victor Stinner · 8 years ago
  77. 65a5a47 issue23591: add docs; code cleanup; more tests by Ethan Furman · 8 years ago
  78. 9650b19 Merge backout for test suite fix by Jason R. Coombs · 8 years ago
  79. 75fbf87 Issue #12885: Merge with 3.5 by Jason R. Coombs · 8 years ago
  80. af0628e Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_level. by Serhiy Storchaka · 8 years ago
  81. 5c071c1 Issue #27919: Deprecate extra_path option in distutils. by Jason R. Coombs · 8 years ago
  82. 2f9cc7a Minor beautification (turn nested-if into a conjunction). by Raymond Hettinger · 8 years ago
  83. 5f30f79 Issue #27922: IDLE tests no longer flash tk widgets (Merge 3.5). by Terry Jan Reedy · 8 years ago
  84. a3623c8 Improve idlelib.textview comments. by Terry Jan Reedy · 8 years ago
  85. 83a1045 Issue #27891: Tweak new idlelib README entry. by Terry Jan Reedy · 8 years ago
  86. 112835c Merge by Raymond Hettinger · 8 years ago
  87. 898ac56 Merge asyncio from 3.5 by Guido van Rossum · 8 years ago
  88. 7309421 Issue #27907: variable rename. (Ville Skyttä) (Merge 3.5->3.6) by Guido van Rossum · 8 years ago
  89. 8890bb2 #27904: fix distutils tests. by R David Murray · 8 years ago
  90. dd917f8 Closes #27904: Improved logging statements to defer formatting until needed. by Vinay Sajip · 8 years ago
  91. ee47e5c issue23591: add Flags, IntFlags, and tests by Ethan Furman · 8 years ago
  92. bfbaa6b Issue #27891: Consistently group and sort imports within idlelib modules. by Terry Jan Reedy · 8 years ago
  93. da02887 Issue #17642: add larger font sizes for classroom projection. by Terry Jan Reedy · 8 years ago
  94. 82f9546 Merge with 3.5 by Terry Jan Reedy · 8 years ago
  95. 3399e1e ? Working Directory ? by Terry Jan Reedy · 8 years ago
  96. 8ca3570 Issue #27895: Strengthen the dict reader tests. by Raymond Hettinger · 8 years ago
  97. 43ca452 Issue #27842: The csv.DictReader now returns rows of type OrderedDict. by Raymond Hettinger · 8 years ago
  98. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  99. 613debc Merge with 3.5 by Zachary Ware · 8 years ago
  100. 5cf1c6c Skip test_tools.test_i18n when pygettext.py is missing by Zachary Ware · 8 years ago