1. 19a70e7 Issue #25462: The hash of the key now is calculated only once in most by Serhiy Storchaka · 9 years ago
  2. 609a2e1 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  3. d7a4415 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  4. 7c3f385 Fix Visual Studio warning. by Stefan Krah · 9 years ago
  5. 0ce5b6e Iaaue #25598: Fix memory_hex from #9951 for non-contiguous buffers. by Stefan Krah · 9 years ago
  6. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 9 years ago
  7. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  8. 97f46db Issue #25410: Made testing that od_fast_nodes and dk_entries are in sync more by Serhiy Storchaka · 9 years ago
  9. d5f353e Issue #24726: Revert setting the value on the dict if by Serhiy Storchaka · 9 years ago
  10. 9c96761 Issue #25558: Refactoring OrderedDict iteration. by Serhiy Storchaka · 9 years ago
  11. 710cd34 Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict that by Serhiy Storchaka · 9 years ago
  12. b45b7b2 Issue #25449: Iterating OrderedDict with keys with unstable hash now raises by Serhiy Storchaka · 9 years ago
  13. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  14. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  15. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  16. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  17. 14eefe3 Issue #25395: Fixed crash when highly nested OrderedDict structures were by Serhiy Storchaka · 9 years ago
  18. 4575beb Issue #25410: C implementation of OrderedDict now uses type(self) instead of by Serhiy Storchaka · 9 years ago
  19. d17427b Issue #25410: Fixed a memory leak in OrderedDict in the case when key's hash by Serhiy Storchaka · 9 years ago
  20. 8003baf Issue #25410: Cleaned up and fixed minor bugs in C implementation of OrderedDict. by Serhiy Storchaka · 9 years ago
  21. 992ec46 Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end() by Serhiy Storchaka · 9 years ago
  22. ec1aa5c More typos in 3.5 documentation and comments by Martin Panter · 9 years ago
  23. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  24. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  25. 59dc696 merge 3.4 (#24806) by Benjamin Peterson · 9 years ago
  26. bd6c41a prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago
  27. 58c8f2b Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  28. 28b21e5 Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  29. b9d98d5 Issue #24483: C implementation of functools.lru_cache() now calculates key's by Serhiy Storchaka · 9 years ago
  30. ae86da9 (Merge 3.4) Issue #25182: Fix compilation on Windows by Victor Stinner · 9 years ago
  31. 89719e1 Issue #25182: Fix compilation on Windows by Victor Stinner · 9 years ago
  32. 008fc77 Issue #25182: The stdprinter (used as sys.stderr before the io module is by Serhiy Storchaka · 9 years ago
  33. a59018c Issue #25182: The stdprinter (used as sys.stderr before the io module is by Serhiy Storchaka · 9 years ago
  34. 5783fd2 Issue #24999: In longobject.c, use two shifts instead of ">> 2*PyLong_SHIFT" to by Victor Stinner · 9 years ago
  35. 4a0d1e7 odictobject.c: fix compiler warning by Victor Stinner · 9 years ago
  36. 37fdcbc Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Merge 3.5.0 -> 3.5) by Guido van Rossum · 9 years ago
  37. 7d293ee Issue #24912: Prevent __class__ assignment to immutable built-in objects. by Guido van Rossum · 9 years ago
  38. ca30b02 Issue #24992: Fix error handling and a race condition (related to garbage by Victor Stinner · 9 years ago
  39. 79b98df Issue #21279: Flesh out str.translate docs by Zachary Ware · 9 years ago
  40. 0c51595 Issue #15944: memoryview: Allow arbitrary formats when casting to bytes. by Stefan Krah · 9 years ago
  41. 8c7f955 Issue #24667: Resize odict in all cases that the underlying dict resizes. by Eric Snow · 9 years ago
  42. d987a81 Issue #21279: Merge with 3.4 by Zachary Ware · 9 years ago
  43. d92d4ef Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind() by Serhiy Storchaka · 9 years ago
  44. a3626bc Issue #24583: Fix crash when set is mutated while being updated. by Raymond Hettinger · 9 years ago
  45. e54d532 merge 3.4 (#24407) by Benjamin Peterson · 9 years ago
  46. 2a48a6e merge 3.3 (#24407) by Benjamin Peterson · 9 years ago
  47. a82f77f protect against mutation of the dict during insertion (closes #24407) by Benjamin Peterson · 9 years ago
  48. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  49. e13f8f3 Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines. by Yury Selivanov · 9 years ago
  50. bc9e75e Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  51. 7b6e3b9 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  52. 4801383 upgrade to Unicode 8.0.0 by Benjamin Peterson · 9 years ago
  53. 66f8828 Issue #24439: Improve PEP 492 related docs. by Yury Selivanov · 9 years ago
  54. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  55. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  56. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  57. 0718de9 repair my irrational excuberance by Benjamin Peterson · 9 years ago
  58. 99e96f2 remove unnecessary braces and indentation by Benjamin Peterson · 9 years ago
  59. 2ad80f5 fix refleak when keys() fails by Benjamin Peterson · 9 years ago
  60. 4fabf02 Issue #24369: Defend against key-changes during iteration. by Eric Snow · 9 years ago
  61. db4061c Issue #24377: Fix a ref leak in OrderedDict.__repr__. by Eric Snow · 9 years ago
  62. 4c72918 Issue #24362: Simplify the C OrderedDict fast nodes resize logic. by Eric Snow · 9 years ago
  63. ac02ef3 Issue #24368: Support keyword arguments in OrderedDict methods. by Eric Snow · 9 years ago
  64. b952ab4 Issue #24359: Check for changed OrderedDict size during iteration. by Eric Snow · 9 years ago
  65. d171975 Issue #24348: Drop superfluous increfs/decrefs. by Eric Snow · 9 years ago
  66. a762af7 Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL. by Eric Snow · 9 years ago
  67. 0969a9f add Py_tp_finalize slot (closes #24345) by Benjamin Peterson · 9 years ago
  68. d4ea03c Issue #24284: The startswith and endswith methods of the str class no longer by Serhiy Storchaka · 9 years ago
  69. e3dfa9e Issue #16991: Fix a few leaks and other memory-related concerns in OrderedDict. by Eric Snow · 9 years ago
  70. 67fb92e Issue #16991: Do not return None from OrderedDict.__reversed__. by Eric Snow · 9 years ago
  71. c5e5960 Issue #16991: Properly handle return values in several places. by Eric Snow · 9 years ago
  72. 7aa5341 Reverting my previous commit. by Yury Selivanov · 9 years ago
  73. e909821 Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  74. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  75. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  76. 2806518 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  77. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  78. 96c6af9 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  79. 47db717 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  80. ac0bffb Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 9 years ago
  81. 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 9 years ago
  82. 8651a50 Issue #23359: Specialize set_lookkey intoa lookup function and an insert function. by Raymond Hettinger · 9 years ago
  83. a7a0ad6 Issue #24276: Fixed optimization of property descriptor getter. by Serhiy Storchaka · 9 years ago
  84. a48db2b Issue #24268: Address some PEP 489 refleaks by Nick Coghlan · 9 years ago
  85. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  86. 6833339 Issue 24237: Raise PendingDeprecationWarning per PEP 479 by Yury Selivanov · 9 years ago
  87. e79ec70 Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  88. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  89. b2f3c23 Issue #23985: Fixed integer overflow in iterator object. Patch by by Serhiy Storchaka · 9 years ago
  90. 4faf5c5 Issue #23985: Fixed integer overflow in iterator object. Patch by by Serhiy Storchaka · 9 years ago
  91. 873e0df Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). by Antoine Pitrou · 9 years ago
  92. f6d1f1f Fix some compilation warnings when using gcc (-Wmaybe-uninitialized). by Antoine Pitrou · 9 years ago
  93. ef64847 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
  94. 2545411 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
  95. 9ce71a6 Fixed typos in comments. by Serhiy Storchaka · 9 years ago
  96. 7e29eea Fixed typos in comments. by Serhiy Storchaka · 9 years ago
  97. 740d613 merge by Raymond Hettinger · 9 years ago
  98. 610a51f Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 9 years ago
  99. d4be691 Issue #24064: Help property() support GC by Raymond Hettinger · 9 years ago
  100. 5af9e13 Minor stylistic and consistency cleanup. by Raymond Hettinger · 9 years ago