1. 6d57fe1 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  2. e175c1b Merge 3.6 by Victor Stinner · 8 years ago
  3. 611b0fa Add _PyDict_CheckConsistency() by Victor Stinner · 8 years ago
  4. ef4c53a Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  5. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 8 years ago
  6. 4829bc6 Bump to 3.7.0a0 by Ned Deily · 8 years ago
  7. 4a94bbe Start 3.6.0b2 by Ned Deily · 8 years ago
  8. beb798c Version bump for 3.6.0b1 by Ned Deily · 8 years ago
  9. 137f39a Issue #27810: Exclude METH_FASTCALL from the stable API by Victor Stinner · 8 years ago
  10. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 8 years ago
  11. b8d768b Revert change f860b7a775c5 by Victor Stinner · 8 years ago
  12. b1e169b ssue #27213: Reintroduce checks in _PyStack_AsDict() by Victor Stinner · 8 years ago
  13. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  14. ab87400 Issue #27129: Replaced wordcode related magic constants with macros. by Serhiy Storchaka · 8 years ago
  15. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  16. 39e1061 add the usual extern C silliness to pydtrace.h by Benjamin Peterson · 8 years ago
  17. fef7e94 Don't run garbage collection on interpreter exit if it was explicitly disabled by Łukasz Langa · 8 years ago
  18. f0ccbbb Emit METH_FASTCALL code in Argument Clinic by Victor Stinner · 8 years ago
  19. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  20. feb7edc dummy dtrace probes are a good place to use inline functions by Benjamin Peterson · 8 years ago
  21. dec2df3 fix dummy macro by Benjamin Peterson · 8 years ago
  22. a785c87 DTrace support: function calls, GC activity, line execution by Łukasz Langa · 8 years ago
  23. 4fd64b9 remove ceval timestamp support by Benjamin Peterson · 8 years ago
  24. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  25. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  26. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  27. f9b760f Rework CALL_FUNCTION* opcodes by Victor Stinner · 8 years ago
  28. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  29. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  30. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  31. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  32. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  33. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  34. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  35. a4348cc Add documentation to the dict implementation by Victor Stinner · 8 years ago
  36. a13e367 simplify Py_UCSN definitions with stdint types by Benjamin Peterson · 8 years ago
  37. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  38. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  39. 98ee9d5 Add Py_MEMBER_SIZE macro by Victor Stinner · 8 years ago
  40. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  41. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  42. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  43. c943265 Issue #15767: Add ModuleNotFoundError. by Eric Snow · 8 years ago
  44. d0600ed Make PyCodeObject.co_extra even more private to force users through the proper API. by Brett Cannon · 8 years ago
  45. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  46. 5223f08 make _Py_static_string_init use a designated initializer by Benjamin Peterson · 8 years ago
  47. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  48. f5aba58 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup by Steve Dower · 8 years ago
  49. e66987e os.urandom() now blocks on Linux by Victor Stinner · 8 years ago
  50. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  51. b9d9eed require uintptr_t to exist by Benjamin Peterson · 8 years ago
  52. 9b3d770 replace Python aliases for standard integer types with the standard integer types (#17884) by Benjamin Peterson · 8 years ago
  53. 88bd3ed only include inttypes.h (#17884) by Benjamin Peterson · 8 years ago
  54. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  55. 4fe5510 require standard int types to be defined (#17884) by Benjamin Peterson · 8 years ago
  56. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  57. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  58. 3cebf93 Implement the frame evaluation API aspect of PEP 523. by Brett Cannon · 8 years ago
  59. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  60. 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
  61. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  62. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  63. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  64. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  65. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  66. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  67. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  68. cbcd221 Merge #27782 fix from 3.5 by Nick Coghlan · 8 years ago
  69. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  70. 8fbab9f Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  71. d210a70 Minor spelling fixes by Martin Panter · 8 years ago
  72. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  73. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  74. ac7974f Start 3.6.0bb1 by Ned Deily · 8 years ago
  75. b87d600 Version bump for 3.6.0a4 by Ned Deily · 8 years ago
  76. 0a891d7 Issue #12345: Add mathemathcal constant tau to math and cmath. by Guido van Rossum · 8 years ago
  77. 6349612 Issue #10910: merge from 3.5 by Ned Deily · 8 years ago
  78. 3d45599 Issue #10910: Update FreedBSD version checks for the ctype UTF-8 workaround. by Ned Deily · 8 years ago
  79. 7659aab Issue #10910: Avoid C++ compilation errors on FreeBSD and OS X. by Ned Deily · 8 years ago
  80. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  81. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  82. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  83. 133138a Issue #22557: Now importing already imported modules is up to 2.5 times faster. by Serhiy Storchaka · 8 years ago
  84. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  85. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  86. 5d0c598 Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). by Alexander Belopolsky · 8 years ago
  87. b209392 Start 3.6.0a4 by Ned Deily · 8 years ago
  88. a731a68 Version bump for 3.6.0a3 by Ned Deily · 8 years ago
  89. 9bb2005 Post-release fixups for Python 3.5.2. by Larry Hastings · 8 years ago
  90. 6c1aa6b Version number bump for 3.5.2 final. by Larry Hastings · 8 years ago
  91. 8a43f72 Start 3.6.0a3 by Ned Deily · 8 years ago
  92. fa42893 Version bump for 3.6.0a2 by Ned Deily · 8 years ago
  93. 6e9a96b Post-release fixups for Python 3.5.2rc1. by Larry Hastings · 8 years ago
  94. 64204de Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. by Serhiy Storchaka · 8 years ago
  95. d31a255 Release bump for 3.5.2rc1. by Larry Hastings · 8 years ago
  96. 6a7506a Issue #27140: Added BUILD_CONST_KEY_MAP opcode. by Serhiy Storchaka · 8 years ago
  97. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 8 years ago
  98. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  99. 410ef8e issue27186: add C version of os.fspath(); patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  100. f22e360 merge 3.5 by Benjamin Peterson · 8 years ago