1. d39206a use c++ style comments by Benjamin Peterson · 8 years ago
  2. 3788b85 Change error return value to be more consistent with the rest of Python by Brett Cannon · 8 years ago
  3. 1bf494b use a the bool type for a boolean variable by Benjamin Peterson · 8 years ago
  4. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  5. a9296e7 require C99 bool by Benjamin Peterson · 8 years ago
  6. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  7. 9d2617b merge 3.5 (#27968) by Benjamin Peterson · 8 years ago
  8. b88db87 supress coroutine warning when an exception is pending (#27968) by Benjamin Peterson · 8 years ago
  9. 4b9abf3 merge 3.5 by Benjamin Peterson · 8 years ago
  10. 33d2a49 promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 8 years ago
  11. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  12. 05448a6 merge 3.5 by Benjamin Peterson · 8 years ago
  13. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  14. 62ec331 Optimize unicode_escape and raw_unicode_escape by Victor Stinner · 8 years ago
  15. 2740e46 _PyUnicodeWriter: assert that max character <= MAX_UNICODE by Victor Stinner · 8 years ago
  16. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  17. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  18. 9b3d770 replace Python aliases for standard integer types with the standard integer types (#17884) by Benjamin Peterson · 8 years ago
  19. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  20. d953f8e remove some silly defined() tests by Benjamin Peterson · 8 years ago
  21. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  22. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  23. ad8c83a Avoid inefficient way to call functions without argument by Victor Stinner · 8 years ago
  24. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  25. 942889a Issue #27938: Add a fast-path for us-ascii encoding by Victor Stinner · 8 years ago
  26. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  27. 55f4452 remove memory indirections in dict_traverse (closes #27956) by Benjamin Peterson · 8 years ago
  28. 2250c4c Issue #27830: Remove unused _PyStack_AsDict() by Victor Stinner · 8 years ago
  29. 7b24b27 merge 3.5 (#27812) by Benjamin Peterson · 8 years ago
  30. bdddb11 clear out f_gen during generator finalization (closes #27812) by Benjamin Peterson · 8 years ago
  31. 9802081 merge 3.5 (closes #27811) by Benjamin Peterson · 8 years ago
  32. 2f40ed4 do not allow _PyGen_Finalize to fail (closes #27811) by Benjamin Peterson · 8 years ago
  33. 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
  34. 1a05d6c PEP 7 style for if/else in C by Victor Stinner · 8 years ago
  35. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  36. 82a9527 Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory. by Mark Dickinson · 8 years ago
  37. 4e1de16 Issue #25402: in int-to-decimal-string conversion, reduce intermediate storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka. by Mark Dickinson · 8 years ago
  38. 583c6e8 Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  39. 1b6c6da Issue #27506: Support bytes/bytearray.translate() delete as keyword argument by Martin Panter · 8 years ago
  40. f74c33a Merge by Raymond Hettinger · 8 years ago
  41. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 8 years ago
  42. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  43. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  44. f7507dd Issue #27830: Fix _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  45. 53cb489 _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult() by Victor Stinner · 8 years ago
  46. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  47. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  48. dd69564 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 8 years ago
  49. d48af09 Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs) by Victor Stinner · 8 years ago
  50. e62b852 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 8 years ago
  51. 463b86a Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  52. 2990fa1 Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  53. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  54. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  55. b820d7f Issue #27792: force int return type for modulo operations involving bools. by Mark Dickinson · 8 years ago
  56. 54cd196 Issue #26984: int() now always returns an instance of exact int. by Serhiy Storchaka · 8 years ago
  57. 1dc3c89 Untabify Objects/longobject.c. by Mark Dickinson · 8 years ago
  58. dc590a4 Issue #25604: Fix minor bug in integer true division, which could by Mark Dickinson · 8 years ago
  59. 5d13238 Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch by Xiang Zhang. by Mark Dickinson · 8 years ago
  60. cbcd221 Merge #27782 fix from 3.5 by Nick Coghlan · 8 years ago
  61. 8682f57 Issue #27782: Fix m_methods handling in multiphase init by Nick Coghlan · 8 years ago
  62. 3766572 Issue #27692: Removed unnecessary NULL checks in exceptions.c. by Serhiy Storchaka · 8 years ago
  63. 253021d Issue #27366: Fix init_subclass() by Victor Stinner · 8 years ago
  64. 9def090 PyFile_WriteObject() now uses fast call by Victor Stinner · 8 years ago
  65. 99ee9c7 calliter_iternext() now uses fast call by Victor Stinner · 8 years ago
  66. 6911267 slot_tp_iter() now uses fast call by Victor Stinner · 8 years ago
  67. 20a3007 slot_nb_bool() now uses fast call by Victor Stinner · 8 years ago
  68. a12eec4 Issue #27128: Cleanup slot_nb_bool() by Victor Stinner · 8 years ago
  69. 5e87749 Issue #27128: slot_sq_item() uses fast call by Victor Stinner · 8 years ago
  70. 018016d Issue #27128: Cleanup slot_sq_item() by Victor Stinner · 8 years ago
  71. f736c26 call_method() and call_maybe() now use fast call by Victor Stinner · 8 years ago
  72. 94463c9 Cleanup call_method() and call_maybe() by Victor Stinner · 8 years ago
  73. 56142c7 Merge 3.5 (fix refleak in call_maybe()) by Victor Stinner · 8 years ago
  74. 6902ddf Fix a refleak in call_maybe() by Victor Stinner · 8 years ago
  75. 59e9ca6 Merge 3.5 (fix refleak in call_method) by Victor Stinner · 8 years ago
  76. d925bd5 Fix a refleak in call_method() by Victor Stinner · 8 years ago
  77. a7720f6 contains and rich compare slots use fast call by Victor Stinner · 8 years ago
  78. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  79. 0d1a799 Avoid call_function_tail() for empty format str by Victor Stinner · 8 years ago
  80. 71aea8e PEP 7: add {...} around null_error() in abstract.c by Victor Stinner · 8 years ago
  81. d042f1f Cleanup callmethod() by Victor Stinner · 8 years ago
  82. 64faad6 Cleanup call_function_tail() by Victor Stinner · 8 years ago
  83. 8880708 call_function_tail() uses fast call by Victor Stinner · 8 years ago
  84. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  85. 7fbce56 Issue #12946: Remove dead code in PyModule_GetDict by Berker Peksag · 8 years ago
  86. 3f015a6 Issue #27157: Make only type() itself accept the one-argument form by Berker Peksag · 8 years ago
  87. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  88. 8bcf312 Issue #27786: Simplify x_sub() by Victor Stinner · 8 years ago
  89. eb24988 Issue #27704: Optimized creating bytes and bytearray from byte-like objects by Serhiy Storchaka · 8 years ago
  90. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  91. febc332 Issue #26754: Undocumented support of general bytes-like objects by Serhiy Storchaka · 8 years ago
  92. 02b75ab Merge spelling and grammar fixes from 3.5 by Martin Panter · 8 years ago
  93. 69332c1 Fix spelling and grammar in documentation and code comments by Martin Panter · 8 years ago
  94. a787e5f Issue #27652: Expose ESHUTDOWN conditionally by Berker Peksag · 8 years ago
  95. 01d1719 Issue #27366: Tweak PEP 487 documentation by Berker Peksag · 8 years ago
  96. d78448e Issue #27366: Implement PEP 487 by Nick Coghlan · 8 years ago
  97. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  98. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  99. 8d49896 (merge from 3.5) Issue #26662: Set PYTHON_FOR_GEN in configure by Xavier de Gaye · 8 years ago
  100. fd0d593 Issue #26662: Set PYTHON_FOR_GEN in configure by Xavier de Gaye · 8 years ago