1. 441f1e3 Fixes #27930: improved QueueListener behaviour. by Vinay Sajip · 8 years ago
  2. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  3. c943265 Issue #15767: Add ModuleNotFoundError. by Eric Snow · 8 years ago
  4. 86a7668 Fixes issue #6766: Updated multiprocessing Proxy Objects to support nesting by Davin Potts · 8 years ago
  5. 1aa642f Issue #27993: Merge plural fixes from 3.5 by Martin Panter · 8 years ago
  6. 1c748f3 Issue #27570: Merge null pointer fixes from 3.5 by Martin Panter · 8 years ago
  7. f3b5bca Fixes Issue #27983: Cause lack of llvm-profdata tool when using clang as by Gregory P. Smith · 8 years ago
  8. 799520c Fixes issue# 27983: Cause lack of llvm-profdata tool when using clang - by Gregory P. Smith · 8 years ago
  9. 2e7c5e9 replace some Py_LOCAL_INLINE with the inline keyword by Benjamin Peterson · 8 years ago
  10. 46d3a59 fix expected layout of code objects by Benjamin Peterson · 8 years ago
  11. 840ef8f more linux -> __linux__ by Benjamin Peterson · 8 years ago
  12. 1badd28 Merge: #22233: Only split headers on \r and/or \n, per email RFCs. by R David Murray · 8 years ago
  13. dc1650c #22233: Only split headers on \r and/or \n, per email RFCs. by R David Murray · 8 years ago
  14. d0600ed Make PyCodeObject.co_extra even more private to force users through the proper API. by Brett Cannon · 8 years ago
  15. d39206a use c++ style comments by Benjamin Peterson · 8 years ago
  16. b6c3458 use the '__linux__' instead 'linux' preprocessor define by Benjamin Peterson · 8 years ago
  17. 56be5f5 Eliminate a tautological-pointer-compare warning found by Clang. by Brett Cannon · 8 years ago
  18. 56b1f1b #27331: add policy keyword argument to all MIME subclasses. by R David Murray · 8 years ago
  19. 3788b85 Change error return value to be more consistent with the rest of Python by Brett Cannon · 8 years ago
  20. d170256 put -std=c99 in CFLAGS_NODIST by Benjamin Peterson · 8 years ago
  21. 7490577 compile with -std=c99 by Benjamin Peterson · 8 years ago
  22. 0d67ed5 permit intermingled declarations by Benjamin Peterson · 8 years ago
  23. 1233744 hardcode sizeof(_Bool) on windows by Benjamin Peterson · 8 years ago
  24. 1bf494b use a the bool type for a boolean variable by Benjamin Peterson · 8 years ago
  25. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  26. a9296e7 require C99 bool by Benjamin Peterson · 8 years ago
  27. 2195d53 Merge: #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. by R David Murray · 8 years ago
  28. 6b46ec7 #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. by R David Murray · 8 years ago
  29. 91afe7e Merge: 27988: Make sure iter_attachments does not mutate the payload list. by R David Murray · 8 years ago
  30. c2e2473 27988: Make sure iter_attachments does not mutate the payload list. by R David Murray · 8 years ago
  31. 5223f08 make _Py_static_string_init use a designated initializer by Benjamin Peterson · 8 years ago
  32. fe8f4c9 Issue #27959: Prevent ImportError from escaping codec search function by Steve Dower · 8 years ago
  33. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  34. c75abff merge 3.5 (closes #27968) by Benjamin Peterson · 8 years ago
  35. 48c8830 capture stderr to silence output during test_coroutines (closes #27968) by Benjamin Peterson · 8 years ago
  36. e2ffe29 new and exciting shutdown error on windows by Benjamin Peterson · 8 years ago
  37. 9d2617b merge 3.5 (#27968) by Benjamin Peterson · 8 years ago
  38. b88db87 supress coroutine warning when an exception is pending (#27968) by Benjamin Peterson · 8 years ago
  39. 6a137e8 add recipes for pseudo-valueless enums by Ethan Furman · 8 years ago
  40. eaa3f5f Issue #16113: one more C90 violation in big endian code. by Christian Heimes · 8 years ago
  41. 0f0eac4 Issue #27993: Fix problems with plural objects in docs and comments by Martin Panter · 8 years ago
  42. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  43. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 8 years ago
  44. fa15c85 Issue #16113: take 2 on big endian machines. by Christian Heimes · 8 years ago
  45. 393b82e Issue #16113: compile the module on Windows, too. by Christian Heimes · 8 years ago
  46. b205fe9 Issue #16113: KeccakP-1600-opt64 does not support big endian platforms yet. by Christian Heimes · 8 years ago
  47. 6fe2a75 Issue #16113: Add SHA-3 and SHAKE support to hashlib module. by Christian Heimes · 8 years ago
  48. 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
  49. 680cb15 Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now by Serhiy Storchaka · 8 years ago
  50. 1194c6d issue20842 - null merge with 3.5 by Senthil Kumaran · 8 years ago
  51. 32d3742 [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". by Senthil Kumaran · 8 years ago
  52. 28aa4a0 Rename weighted_choices() to just choices() by Raymond Hettinger · 8 years ago
  53. c98b26a Issue #25596: Falls back to listdir in glob for bytes paths on Windows. by Serhiy Storchaka · 8 years ago
  54. 1de1a6a Issue #27905: Docs for typing.Type[C], by Michael Lee. (Merge 3.5->3.6) by Guido van Rossum · 8 years ago
  55. e848cd7 Issue #27905: Docs for typing.Type[C], by Michael Lee. by Guido van Rossum · 8 years ago
  56. 4b9abf3 merge 3.5 by Benjamin Peterson · 8 years ago
  57. 19ab0fd Issue #27731: Opt-out of MAX_PATH on Windows 10 by Steve Dower · 8 years ago
  58. 33d2a49 promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 8 years ago
  59. 437df90 get skipIf from the right place by Benjamin Peterson · 8 years ago
  60. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  61. 173a1f3 Fix test_os.GetRandomTests() by Victor Stinner · 8 years ago
  62. 6cebd48 Issue #27959: Updates NEWS and whatsnew by Steve Dower · 8 years ago
  63. 5a71327 Issue #27959: Documents new encoding and alias. by Steve Dower · 8 years ago
  64. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  65. 22d0698 Adds test.support.PGO and skips tests that are not useful for PGO. by Steve Dower · 8 years ago
  66. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  67. a439191 Fix some warnings from MSVC by Steve Dower · 8 years ago
  68. 35b40c6 merge 3.5 by Benjamin Peterson · 8 years ago
  69. 4a75760 do not memcpy from NULL by Benjamin Peterson · 8 years ago
  70. d519e02 Merge from 3.5 by Berker Peksag · 8 years ago
  71. a1bc246 Use shorter version of Connection.isolation_level in sqlite3.rst by Berker Peksag · 8 years ago
  72. 05448a6 merge 3.5 by Benjamin Peterson · 8 years ago
  73. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  74. cc554b6 Silence two warnings in blake2. key_length is between 0 and 64 (block size). by Christian Heimes · 8 years ago
  75. 32a2cee Bypass __get_openssl_constructor() and always use our own blake2 implementation by Christian Heimes · 8 years ago
  76. 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
  77. aee52cc Merge by Brett Cannon · 8 years ago
  78. bfeec22 Merge for #26359 by Brett Cannon · 8 years ago
  79. e8f1e00 Issue #18844: Add random.weighted_choices() by Raymond Hettinger · 8 years ago
  80. 8c94f97 Issue #26359: Add the --with-optimizations flag. by Brett Cannon · 8 years ago
  81. 63d98bc Issue #26359: Add the --with-optimizations configure flag. by Brett Cannon · 8 years ago
  82. 62ec331 Optimize unicode_escape and raw_unicode_escape by Victor Stinner · 8 years ago
  83. 9f2a920 Issue #27776: include process.h on Windows for getpid() by Victor Stinner · 8 years ago
  84. 2740e46 _PyUnicodeWriter: assert that max character <= MAX_UNICODE by Victor Stinner · 8 years ago
  85. 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
  86. 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
  87. 3cdaaaf Add libpython*.dylib to .{hg,git}ignore by Zachary Ware · 8 years ago
  88. 7ba8337 Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you again. by Christian Heimes · 8 years ago
  89. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  90. e256acc Issue #23226: Add linspace() recipe to the docs by Raymond Hettinger · 8 years ago
  91. 59a0464 Download hashlib test vectors from pythontest.net by Christian Heimes · 8 years ago
  92. eaecc69 Issue #27974: Remove importlib._bootstrap._ManageReload. by Brett Cannon · 8 years ago
  93. 9b1f474 Add os.getrandom() by Victor Stinner · 8 years ago
  94. 3580b03 Issue #21250: Merge from 3.5 by Berker Peksag · 8 years ago
  95. 4bf580d Issue #21250: Add tests for SQLite's ON CONFLICT clause by Berker Peksag · 8 years ago
  96. 2784c5b Darn you, Benjamin! by Brett Cannon · 8 years ago
  97. 7103ff9 merge heads by Benjamin Peterson · 8 years ago
  98. e644f5a Merge for #27872 doc changes by Brett Cannon · 8 years ago
  99. 6fa7aad Issue #26027, #27524: Document the support for path-like objects in os and os.path. by Brett Cannon · 8 years ago
  100. 0cf2238 merge 3.5 by Benjamin Peterson · 8 years ago