1. f794b14 Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 12 years ago
  2. 74001fa list slotdefs in offset order rather than sorting them (closes #17610) by Benjamin Peterson · 12 years ago
  3. 6c467a4 Revert a premature patch for issue #14010 (changeset d17d10c84d27). by Serhiy Storchaka · 12 years ago
  4. bb84565 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  5. da2c7eb allow any type with __getitem__ to be a mapping for the purposes of % (#15801) by Benjamin Peterson · 12 years ago
  6. 1d108bc Issue #10211 : Buffer object should support the new buffer interface. by Kristján Valur Jónsson · 12 years ago
  7. 7cac1c2 Issue #16445: Fix potential segmentation fault when deleting an exception message. by Mark Dickinson · 12 years ago
  8. 8e830a0 fix building without pymalloc (closes #17228) by Benjamin Peterson · 12 years ago
  9. 5aff27a #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  10. d5327d9 Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 13 years ago
  11. a8d64ae Issue #17034: Use Py_CLEAR() in stringobject.c. by Serhiy Storchaka · 13 years ago
  12. c0022b2 Silence a -Wformat-extra-argument warning when compiling. by Gregory P. Smith · 13 years ago
  13. c8e5812 Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 13 years ago
  14. c59c85c Issue #10156: In the interpreter's initialization phase, unicode globals by Serhiy Storchaka · 13 years ago
  15. 01b3a08 Issue #16975: Fix error handling bug in the escape-decode decoder. by Serhiy Storchaka · 13 years ago
  16. 1d3acd4 Issue #16335: Fix integer overflow in unicode-escape decoder. by Serhiy Storchaka · 13 years ago
  17. 926f3a3 Issue #15989: Fix possible integer overflow in str formatting as in unicode formatting. by Serhiy Storchaka · 13 years ago
  18. 74f49ab Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 13 years ago
  19. ac7b49f Improve tooltips by listing the most common argument pattern first. by Raymond Hettinger · 13 years ago
  20. 9599745 Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping" by Serhiy Storchaka · 13 years ago
  21. c4b82c0 Issue #11461: Fix the incremental UTF-16 decoder. Original patch by by Serhiy Storchaka · 13 years ago
  22. c9631a1 Fix out of bound read in UTF-32 decoder on "narrow Unicode" builds. by Serhiy Storchaka · 13 years ago
  23. 8f53ded untabify by Benjamin Peterson · 13 years ago
  24. a708adf call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516) by Benjamin Peterson · 13 years ago
  25. 6b3f8d3 ensure the attribute name string is initalized before using it (closes #16839) by Benjamin Peterson · 13 years ago
  26. 5ca88d2 get the core to compile --disable-unicode by Benjamin Peterson · 13 years ago
  27. cf095f8 Issue #16761: Raise TypeError when int() or long() called with base argument only. by Serhiy Storchaka · 13 years ago
  28. d38c990 Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
  29. 115bc79 Issue #9742: Sneaky fix for build failure on Solaris 9. by Mark Dickinson · 13 years ago
  30. e3ae321 Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 13 years ago
  31. b704eab Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 13 years ago
  32. 146a5fe Fix compilation on Windows by Christian Heimes · 13 years ago
  33. 67dc4a8 #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 13 years ago
  34. 47fa4d5 avoid a function call with redundant checks for dict size by Benjamin Peterson · 13 years ago
  35. 0ec820f only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 13 years ago
  36. 6da3ed6 initialize more global type objects (closes #16369) by Benjamin Peterson · 13 years ago
  37. 75d3600 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 13 years ago
  38. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 13 years ago
  39. 218a8ab Issues #16029, #16030: Fix pickling and repr of large xranges. by Mark Dickinson · 13 years ago
  40. 47770ed Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371 by Christian Heimes · 13 years ago
  41. 4e80eea Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 13 years ago
  42. 074ebce PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 13 years ago
  43. 58098a7 Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 13 years ago
  44. 23d49d3 use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 13 years ago
  45. c5bef75 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 13 years ago
  46. 715a63b Issue #14579: Fix error handling bug in the utf-16 decoder. by Antoine Pitrou · 13 years ago
  47. 7d8a2e4 allow any number to be returned from __length_hint__ (closes #15354) by Benjamin Peterson · 13 years ago
  48. b2ac4d6 Fixes issue #12268 for file readline, readlines and read() and readinto methods. by Gregory P. Smith · 13 years ago
  49. aad5b02 Improve tooltips for splitlines() by showing that the default for keepends is False. by Raymond Hettinger · 13 years ago
  50. ed11a5d Issue #8767: Restore building with --disable-unicode. by Martin v. Löwis · 13 years ago
  51. f1ae5cf fix possible refleak (closes #14752) by Benjamin Peterson · 13 years ago
  52. d62da9d close() doesn't take any args (closes #14717) by Benjamin Peterson · 13 years ago
  53. f3ad1f9 use formats that work on 2.7 by Benjamin Peterson · 13 years ago
  54. 042c47b fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 13 years ago
  55. d157a4c don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 13 years ago
  56. 7660555 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 13 years ago
  57. fe146ea merge 2.7 release branch by Benjamin Peterson · 13 years ago
  58. f51c384 fix build without Py_DEBUG and DNDEBUG (closes #14509) by Benjamin Peterson · 13 years ago
  59. 02a3801 Issue #14505: Fix file descriptor leak when deallocating file objects created with PyFile_FromString(). by Antoine Pitrou · 13 years ago
  60. fe94177 Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 13 years ago
  61. e8ecc73 kill this terribly outdated comment by Benjamin Peterson · 13 years ago
  62. dbc52f8 check for string attribute names in old-style classes (closes #14334) by Benjamin Peterson · 13 years ago
  63. 6e7832b check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
  64. eace3a7 #14161: fix compile error under Windows. by Ezio Melotti · 13 years ago
  65. 11f8b68 #14161: fix the __repr__ of file objects to escape the file name. by Ezio Melotti · 13 years ago
  66. 9d7601f merge 2.6 by Benjamin Peterson · 13 years ago
  67. 26da920 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  68. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  69. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  70. a4c81b0 Fix typo by Éric Araujo · 13 years ago
  71. 32c49d9 use Py_CLEAR by Benjamin Peterson · 13 years ago
  72. fd7e496 Fix indentation. by Antoine Pitrou · 13 years ago
  73. c66ed45 Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 13 years ago
  74. 0f7e2df this is only a borrowed ref in Brett's branch by Benjamin Peterson · 14 years ago
  75. cec6a61 bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 14 years ago
  76. 4c79aec put returns on their own lines by Benjamin Peterson · 14 years ago
  77. 1abe6cd Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 14 years ago
  78. a8d4585 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 13 years ago
  79. 6a1cd1b Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 13 years ago
  80. 6f14c33 Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 14 years ago
  81. 5b4b2da Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 14 years ago
  82. 975134e Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 14 years ago
  83. 7d1483c Make an error message more understandable and consistent with other error messages. by Raymond Hettinger · 14 years ago
  84. 3040254 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 14 years ago
  85. d784185 Issue #13161: fix doc strings of __i*__ operators by Eli Bendersky · 14 years ago
  86. 3b9d92a Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 14 years ago
  87. 819d8d4 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 14 years ago
  88. e3b5eda remove unused variable by Benjamin Peterson · 14 years ago
  89. a39de11 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 14 years ago
  90. 5f4d870 Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 14 years ago
  91. 8ffbab8 Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 14 years ago
  92. a7b0976 PyEval_CallObject requires a tuple of args (closes #13186) by Benjamin Peterson · 14 years ago
  93. 3624815 Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 14 years ago
  94. 63c22fa Issue #7732: Fix a crash on importing a module if a directory has the same name by Victor Stinner · 14 years ago
  95. 4ac5d2c Backport issue #12973 list_repeat fix from 3.x. by Mark Dickinson · 14 years ago
  96. dbbed04 Issue #12973: Fix int.__pow__ overflow checks that invoked undefined behaviour, thereby producing incorrect results on Clang. by Mark Dickinson · 14 years ago
  97. de66ecc fix possible refleaks by Benjamin Peterson · 14 years ago
  98. 15d6b65 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 14 years ago
  99. 5e3a19d merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 14 years ago
  100. 304f0f9 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 14 years ago