1. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  2. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  3. 98ee9d5 Add Py_MEMBER_SIZE macro by Victor Stinner · 8 years ago
  4. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  5. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  6. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  7. c943265 Issue #15767: Add ModuleNotFoundError. by Eric Snow · 8 years ago
  8. d0600ed Make PyCodeObject.co_extra even more private to force users through the proper API. by Brett Cannon · 8 years ago
  9. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  10. 5223f08 make _Py_static_string_init use a designated initializer by Benjamin Peterson · 8 years ago
  11. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  12. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  13. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  14. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  15. b9d9eed require uintptr_t to exist by Benjamin Peterson · 8 years ago
  16. 9b3d770 replace Python aliases for standard integer types with the standard integer types (#17884) by Benjamin Peterson · 8 years ago
  17. 88bd3ed only include inttypes.h (#17884) by Benjamin Peterson · 8 years ago
  18. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  19. 4fe5510 require standard int types to be defined (#17884) by Benjamin Peterson · 8 years ago
  20. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  21. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  22. 3cebf93 Implement the frame evaluation API aspect of PEP 523. by Brett Cannon · 8 years ago
  23. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  24. 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
  25. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  26. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  27. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  28. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  29. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  30. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  31. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  32. cbcd221 Merge #27782 fix from 3.5 by Nick Coghlan · 8 years ago
  33. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  34. 8fbab9f Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  35. d210a70 Minor spelling fixes by Martin Panter · 8 years ago
  36. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  37. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  38. ac7974f Start 3.6.0bb1 by Ned Deily · 8 years ago
  39. b87d600 Version bump for 3.6.0a4 by Ned Deily · 8 years ago
  40. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 8 years ago
  41. 6349612 Issue #10910: merge from 3.5 by Ned Deily · 8 years ago
  42. 3d45599 Issue #10910: Update FreedBSD version checks for the ctype UTF-8 workaround. by Ned Deily · 8 years ago
  43. 7659aab Issue #10910: Avoid C++ compilation errors on FreeBSD and OS X. by Ned Deily · 8 years ago
  44. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  45. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  46. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  47. 133138a Issue #22557: Now importing already imported modules is up to 2.5 times faster. by Serhiy Storchaka · 8 years ago
  48. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  49. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  50. 5d0c598 Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). by Alexander Belopolsky · 8 years ago
  51. b209392 Start 3.6.0a4 by Ned Deily · 8 years ago
  52. a731a68 Version bump for 3.6.0a3 by Ned Deily · 8 years ago
  53. 9bb2005 Post-release fixups for Python 3.5.2. by Larry Hastings · 8 years ago
  54. 6c1aa6b Version number bump for 3.5.2 final. by Larry Hastings · 8 years ago
  55. 8a43f72 Start 3.6.0a3 by Ned Deily · 8 years ago
  56. fa42893 Version bump for 3.6.0a2 by Ned Deily · 8 years ago
  57. 6e9a96b Post-release fixups for Python 3.5.2rc1. by Larry Hastings · 8 years ago
  58. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  59. d31a255 Release bump for 3.5.2rc1. by Larry Hastings · 8 years ago
  60. 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 8 years ago
  61. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 8 years ago
  62. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  63. 410ef8e issue27186: add C version of os.fspath(); patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  64. f22e360 merge 3.5 by Benjamin Peterson · 8 years ago
  65. 3da8206 fix indentation of comment by Benjamin Peterson · 8 years ago
  66. 0b7d84d Issue #27171: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  67. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  68. 1f9eb87 Issue #26857: The gethostbyaddr_r() workaround is no longer needed with by Stefan Krah · 8 years ago
  69. 786ed55 Post-release cleanup: 3.6.0a1 -> 3.6.0a2 by Ned Deily · 8 years ago
  70. cec00a7 Version bump for 3.6.0a1 by Ned Deily · 8 years ago
  71. 1ce738e Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  72. 4c35964 Corrections for a/an in code comments and documentation by Martin Panter · 8 years ago
  73. dd40fc3 Issue #26765: Moved common code and docstrings for bytes and bytearray methods by Serhiy Storchaka · 8 years ago
  74. b608196 Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads(). by Serhiy Storchaka · 8 years ago
  75. f5f37d7 Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads(). by Serhiy Storchaka · 8 years ago
  76. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  77. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  78. cda8094 Issue #15984: Merge PyUnicode doc from 3.5 by Martin Panter · 8 years ago
  79. 20d3255 Issue #15984: Correct PyUnicode_FromObject() and _FromEncodedObject() docs by Martin Panter · 8 years ago
  80. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  81. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  82. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  83. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  84. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  85. c86c91a Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  86. cc71a79 Fix typos in documentation and comments by Martin Panter · 8 years ago
  87. 0a85c69 Revert back to 3.6.0, buildbots do not want chocolate for 04-01 by Ned Deily · 8 years ago
  88. 49f324f Python 8: no pep8, no chocolate! by Victor Stinner · 8 years ago
  89. 228ca33 Merge 3.5 (pystate.h) by Victor Stinner · 8 years ago
  90. 4b8b86c pystate.h: fix _PyThreadState_UncheckedGet() by Victor Stinner · 8 years ago
  91. bd31b7c Issue #23848: Expose _Py_DumpHexadecimal() by Victor Stinner · 8 years ago
  92. ca79ccd Issue #26588: by Victor Stinner · 8 years ago
  93. f9a7115 Issue #26588: remove debug traces from _tracemalloc. by Victor Stinner · 8 years ago
  94. ff9c534 Issue #26588: fix compilation on Windows by Victor Stinner · 8 years ago
  95. 10b73e1 Add C functions _PyTraceMalloc_Track() by Victor Stinner · 8 years ago
  96. af4a1f2 fix indentation in Py_DECREF() by Victor Stinner · 8 years ago
  97. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  98. 861d9ab faulthandler now works in non-Python threads by Victor Stinner · 8 years ago
  99. 89e7cdc Enhance and rewrite traceback dump C functions by Victor Stinner · 8 years ago
  100. 8a1be61 Add more checks on the GIL by Victor Stinner · 8 years ago