1. 05469fa bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480) by Xiang Zhang · 7 years ago
  2. f6a3133 bpo-30255: Clip step in _PySlice_Unpack() (#1429) by Victor Stinner · 7 years ago
  3. 5e79321 bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154) by Serhiy Storchaka · 7 years ago
  4. e41390a bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046) by Serhiy Storchaka · 7 years ago
  5. 079f21f bpo-29935: Fixed error messages in the index() method of tuple and list (#887) (#907) (#910) by Serhiy Storchaka · 7 years ago
  6. c0b336e bpo-29602: fix signed zero handling in complex constructor (#204) by Mark Dickinson · 7 years ago
  7. 7131a73 bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#187) by Xiang Zhang · 7 years ago
  8. 8e21cc3 Issue #29028: Fixed possible use-after-free bugs in the subscription of the by Serhiy Storchaka · 8 years ago
  9. 3efe32e Issue #27867: Replaced function PySlice_GetIndicesEx() with a macro. by Serhiy Storchaka · 8 years ago
  10. 7bdb516 Issue #29145: Fix overflow checks in string, bytearray and unicode. by Xiang Zhang · 8 years ago
  11. f939b3c Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  12. 994f04d Issue #28998: More APIs now support longs as well as ints. by Serhiy Storchaka · 8 years ago
  13. e126f98 Issue #29019: Fix dict.fromkeys(x) overallocates when x is sparce dict. by INADA Naoki · 8 years ago
  14. 4403d50 revert a37cc3d926ec (#5322) by Benjamin Peterson · 8 years ago
  15. d1aad3f Backed out changeset ea904d4b3634 by Benjamin Peterson · 8 years ago
  16. f8f2138 fix refleak in reduce_2 error case by Benjamin Peterson · 8 years ago
  17. 4458449 fix refleak in the shift-by-zero case (#27870) by Benjamin Peterson · 8 years ago
  18. cffc0f4 declarations to the top of the block by Benjamin Peterson · 8 years ago
  19. daf82f7 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  20. c30f27d Issue #11145: Fixed miscellaneous issues with C-style formatting of types by Serhiy Storchaka · 8 years ago
  21. 13cc679 Issue #24469: Fixed memory leak caused by int subclasses without overridden by Serhiy Storchaka · 8 years ago
  22. 48aa605 Issue #27942: Fix memory leak in codeobject.c by Yury Selivanov · 8 years ago
  23. 61dd7ff Issue #26906: Resolving special methods of uninitialized type now causes by Serhiy Storchaka · 8 years ago
  24. 6a35bf6 Silenced compiler warnings. by Serhiy Storchaka · 8 years ago
  25. 0ea51b1 Issue #18287: PyType_Ready() now checks that tp_name is not NULL. by Serhiy Storchaka · 8 years ago
  26. ab8b75a Issue #28350: String constants with null character no longer interned. by Serhiy Storchaka · 8 years ago
  27. 67edf73 Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  28. ca56dd4 Issue #28139: Fix messed up indentation by Martin Panter · 8 years ago
  29. 440bbd0 Correct occurance → occurrence; extracted from patch by Georg Brandl by Martin Panter · 8 years ago
  30. 6507657 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  31. 89f676f promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 8 years ago
  32. d4d7900 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  33. 02c0c0b 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
  34. 89446b2 Issue #25604: Fix bug in integer true division that could have resulted in off-by-one-ulp results in unusual cases. by Mark Dickinson · 8 years ago
  35. 42e9d94 Fix a refleak in call_maybe() by Victor Stinner · 8 years ago
  36. c9921d3 Fix a refleak in call_method() by Victor Stinner · 8 years ago
  37. 3d36f0f Spelling and grammar fixes in code comments and documentation by Martin Panter · 8 years ago
  38. a850ef6 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  39. 2a0438d Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple() by Martin Panter · 8 years ago
  40. 0c08fe0 Issue #27507: Check for integer overflow in bytearray.extend() by Martin Panter · 8 years ago
  41. 373773d Issue #27473: Fixed possible integer overflow in str, unicode and bytearray by Serhiy Storchaka · 8 years ago
  42. b362f75 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  43. ee69451 fix refleaks in PyDict_SetItem error cases (closes #27248) by Benjamin Peterson · 8 years ago
  44. 3c9ce74 Issue #23908: os functions, open() and the io.FileIO constructor now reject by Serhiy Storchaka · 8 years ago
  45. 646b528 Issue #22463: Backport compiler warning fixes and workarounds by Martin Panter · 8 years ago
  46. 1a9ee94 Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. by Serhiy Storchaka · 8 years ago
  47. d37781e Issue #20041: Fixed TypeError when frame.f_trace is set to None. by Serhiy Storchaka · 8 years ago
  48. 8d496ad Issue #27171: Fix typos in documentation, code comments, and tests by Martin Panter · 8 years ago
  49. 200a615 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  50. b44c452 Issue #27125: Fix various errors like “will [be] inherited” by Martin Panter · 8 years ago
  51. 6ee36a5 Backed out changeset e7062dd9085e (#25731) by Benjamin Peterson · 8 years ago
  52. b1d867f Issue #27076: Doc, comment and test function name spelling fixes by Martin Panter · 8 years ago
  53. c742dff Issue #27039: Fixed bytearray.remove() for values greater than 127. by Serhiy Storchaka · 8 years ago
  54. 413a8e1 fix indentation of comments in cellobject.c (closes #27011) by Benjamin Peterson · 8 years ago
  55. 4f23cab Corrections for a/an in code comments and documentation by Martin Panter · 8 years ago
  56. 816a5ff Issue #17765: weakref.ref() no longer silently ignores keyword arguments. by Serhiy Storchaka · 8 years ago
  57. 9a118f1 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  58. 414f8b9 add gc support to slice (closes #26659) by Benjamin Peterson · 8 years ago
  59. 6a8163a Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  60. 9ec6464 Issue #26718: super.__init__ no longer leaks memory if called multiple times. by Serhiy Storchaka · 8 years ago
  61. 763a61c Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  62. 149d080 Issue #13410: Fixed a bug in PyUnicode_Format where it failed to properly by Serhiy Storchaka · 8 years ago
  63. bc62af1 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  64. 14a7d63 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  65. 4ddb44a properly use PyObject_CallMethod in dictview binary operations (closes #26478) by Benjamin Peterson · 8 years ago
  66. 1c49617 Issue #25698: Importing module if the stack is too deep no longer replaces by Serhiy Storchaka · 9 years ago
  67. b59b04d fix hash member name (closes #22847) by Benjamin Peterson · 9 years ago
  68. 4a0a955 fix debug assertion by Benjamin Peterson · 9 years ago
  69. 225e7c0 Issue #22847: Improve method cache efficiency. by Antoine Pitrou · 10 years ago
  70. 7791165 code_richcompare() now uses the constants types by Victor Stinner · 9 years ago
  71. a4acf1f set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731) by Benjamin Peterson · 9 years ago
  72. 607965e Comment out two tests that won't pass now after reverting the typeobject.c by Barry Warsaw · 9 years ago
  73. f65395c Issue #22995: [UPDATE] Comment out the one of the pickleability tests in by Barry Warsaw · 9 years ago
  74. f30bad2 remove some copyright notices supserseded by the toplevel ones by Benjamin Peterson · 9 years ago
  75. 28f35f2 Issue #25961: Fixed compilation error and a leak in type constructor. by Serhiy Storchaka · 9 years ago
  76. f9347e3 Issue #25961: Disallowed null characters in the type name. by Serhiy Storchaka · 9 years ago
  77. b8e54dd Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 9 years ago
  78. 2e6c829 Issue #20440: More use of Py_SETREF. by Serhiy Storchaka · 9 years ago
  79. 8688aca Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  80. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  81. c06a6d0 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  82. e37003e Issue #19543: Added Py3k warning for decoding unicode. by Serhiy Storchaka · 9 years ago
  83. ee1b24c Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside by Serhiy Storchaka · 9 years ago
  84. 8d30ad7 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  85. 6156560 Issue #25678: Copy buffer objects to null-terminated strings. by Serhiy Storchaka · 9 years ago
  86. fedcf94 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  87. e192d0b Issue #7267: format(int, 'c') now raises OverflowError when the argument is not by Victor Stinner · 9 years ago
  88. 462502b Issue #24848: Fixed yet one bug in UTF-7 decoder. Testing for BASE64 character by Serhiy Storchaka · 9 years ago
  89. 9c90e25 Issue #25326: Improve an obscure error message. by Raymond Hettinger · 9 years ago
  90. 77d12ec prevent unacceptable bases from becoming bases through multiple inheritance (#24806) by Benjamin Peterson · 9 years ago
  91. e12f632 Issue #24848: Fixed bugs in UTF-7 decoding of misformed data: by Serhiy Storchaka · 9 years ago
  92. 1edd2f6 make comment not lie about the size of SMALL_REQUEST_THRESHOLD by Benjamin Peterson · 9 years ago
  93. ab76635 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  94. f0aa88f Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  95. c7797dc Issue #19543: Emit deprecation warning for known non-text encodings. by Serhiy Storchaka · 9 years ago
  96. 5127ed7 Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  97. d43e928 Issue #23985: Fixed integer overflow in iterator object. Original patch by by Serhiy Storchaka · 9 years ago
  98. 51dbc9a Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 9 years ago
  99. 77b3ae5 Issue #23971: Fix underestimated presizing in dict.fromkeys() by Raymond Hettinger · 9 years ago
  100. b529c24 allow 2.7 to be built with asan (closes #24061) by Benjamin Peterson · 9 years ago