1. ab87400 Issue #27129: Replaced wordcode related magic constants with macros. by Serhiy Storchaka · 8 years ago
  2. 944368e Issue #23722: Initialize __class__ from type.__new__() by Nick Coghlan · 8 years ago
  3. 82cb124 Issue #25221: merge from 3.5. by Mark Dickinson · 8 years ago
  4. 36820dd Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0. by Mark Dickinson · 8 years ago
  5. 473e0e4 Fixed compiler warnings in compact dict implementation on 32-bit platforms. by Serhiy Storchaka · 8 years ago
  6. 990397e dictobject.c: explain why stringlib is used by Victor Stinner · 8 years ago
  7. 37e4ef7 Issue #27810: Rerun Argument Clinic on all modules by Victor Stinner · 8 years ago
  8. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  9. 78601a3 Fix SystemError in compact dict by Victor Stinner · 8 years ago
  10. a721aba Issue #26331: Implement the parsing part of PEP 515. by Brett Cannon · 8 years ago
  11. 7c19aff Issue #25856: The __module__ attribute of extension classes and functions by Serhiy Storchaka · 8 years ago
  12. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  13. 621b430 remove all usage of Py_LOCAL by Benjamin Peterson · 8 years ago
  14. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  15. 6cb526e remove unconvincing use of Py_LOCAL by Benjamin Peterson · 8 years ago
  16. 06aed90 Issue #27576: Fix call order in OrderedDict.__init__(). by Eric Snow · 8 years ago
  17. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  18. 71c01d4 Issue #28033: Fix typo in dictobject.c by Berker Peksag · 8 years ago
  19. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  20. 07a2a1b Additional safe-guard against dereferencing NULL in reduce_newobj by Christian Heimes · 8 years ago
  21. 884332b Add NULL check for gen->gi_code in gen_send_ex() by Christian Heimes · 8 years ago
  22. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  23. b88db87 supress coroutine warning when an exception is pending (#27968) by Benjamin Peterson · 8 years ago
  24. 33d2a49 promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 8 years ago
  25. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  26. bdddb11 clear out f_gen during generator finalization (closes #27812) by Benjamin Peterson · 8 years ago
  27. 2f40ed4 do not allow _PyGen_Finalize to fail (closes #27811) by Benjamin Peterson · 8 years ago
  28. 3c56929 do not worry about 64-bit dict sizes on 32-bit platforms by Benjamin Peterson · 8 years ago
  29. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  30. 110b6fe #27364: Deprecate invalid escape strings in str/byutes. by R David Murray · 8 years ago
  31. 186122e access dk_indices through a union by Benjamin Peterson · 8 years ago
  32. a4348cc Add documentation to the dict implementation by Victor Stinner · 8 years ago
  33. 58f7c5a Reindeint DK_xxx macros by Victor Stinner · 8 years ago
  34. 208857e dk_get_index/dk_set_index uses a type indices variable by Victor Stinner · 8 years ago
  35. 82cce4c use static inline instead of Py_LOCAL_INLINE by Benjamin Peterson · 8 years ago
  36. dee6e25 Split lookdict_unicode_nodummy() assertion to debug by Victor Stinner · 8 years ago
  37. ee178e6 fix spelling by Benjamin Peterson · 8 years ago
  38. 71211e3 Add assertions to dk_set_index() by Victor Stinner · 8 years ago
  39. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  40. 003f059 link to canonical blogspot by Benjamin Peterson · 8 years ago
  41. 7322225 use native inline instead of Py_LOCAL_INLINE by Benjamin Peterson · 8 years ago
  42. f0acae2 rearrange to make gcc happy by Benjamin Peterson · 8 years ago
  43. 98ee9d5 Add Py_MEMBER_SIZE macro by Victor Stinner · 8 years ago
  44. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  45. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  46. c943265 Issue #15767: Add ModuleNotFoundError. by Eric Snow · 8 years ago
  47. 2e7c5e9 replace some Py_LOCAL_INLINE with the inline keyword by Benjamin Peterson · 8 years ago
  48. d0600ed Make PyCodeObject.co_extra even more private to force users through the proper API. by Brett Cannon · 8 years ago
  49. d39206a use c++ style comments by Benjamin Peterson · 8 years ago
  50. 3788b85 Change error return value to be more consistent with the rest of Python by Brett Cannon · 8 years ago
  51. 1bf494b use a the bool type for a boolean variable by Benjamin Peterson · 8 years ago
  52. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  53. a9296e7 require C99 bool by Benjamin Peterson · 8 years ago
  54. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  55. 9d2617b merge 3.5 (#27968) by Benjamin Peterson · 8 years ago
  56. 4b9abf3 merge 3.5 by Benjamin Peterson · 8 years ago
  57. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  58. 05448a6 merge 3.5 by Benjamin Peterson · 8 years ago
  59. 62ec331 Optimize unicode_escape and raw_unicode_escape by Victor Stinner · 8 years ago
  60. 2740e46 _PyUnicodeWriter: assert that max character <= MAX_UNICODE by Victor Stinner · 8 years ago
  61. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  62. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  63. 9b3d770 replace Python aliases for standard integer types with the standard integer types (#17884) by Benjamin Peterson · 8 years ago
  64. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 8 years ago
  65. d953f8e remove some silly defined() tests by Benjamin Peterson · 8 years ago
  66. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  67. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  68. ad8c83a Avoid inefficient way to call functions without argument by Victor Stinner · 8 years ago
  69. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  70. 942889a Issue #27938: Add a fast-path for us-ascii encoding by Victor Stinner · 8 years ago
  71. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  72. 55f4452 remove memory indirections in dict_traverse (closes #27956) by Benjamin Peterson · 8 years ago
  73. 2250c4c Issue #27830: Remove unused _PyStack_AsDict() by Victor Stinner · 8 years ago
  74. 7b24b27 merge 3.5 (#27812) by Benjamin Peterson · 8 years ago
  75. 9802081 merge 3.5 (closes #27811) by Benjamin Peterson · 8 years ago
  76. 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
  77. 1a05d6c PEP 7 style for if/else in C by Victor Stinner · 8 years ago
  78. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  79. 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
  80. 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
  81. 583c6e8 Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman. by Mark Dickinson · 8 years ago
  82. 1b6c6da Issue #27506: Support bytes/bytearray.translate() delete as keyword argument by Martin Panter · 8 years ago
  83. f74c33a Merge by Raymond Hettinger · 8 years ago
  84. 7ea386e Issue 19504: Change "customise" to "customize" American spelling. by Raymond Hettinger · 8 years ago
  85. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  86. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  87. f7507dd Issue #27830: Fix _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  88. 53cb489 _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult() by Victor Stinner · 8 years ago
  89. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  90. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  91. dd69564 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 8 years ago
  92. d48af09 Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs) by Victor Stinner · 8 years ago
  93. e62b852 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 8 years ago
  94. 463b86a Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  95. 2990fa1 Issue #27809: Use _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  96. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  97. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  98. b820d7f Issue #27792: force int return type for modulo operations involving bools. by Mark Dickinson · 8 years ago
  99. 54cd196 Issue #26984: int() now always returns an instance of exact int. by Serhiy Storchaka · 8 years ago
  100. 1dc3c89 Untabify Objects/longobject.c. by Mark Dickinson · 8 years ago