1. eace3a7 #14161: fix compile error under Windows. by Ezio Melotti · 12 years ago
  2. 11f8b68 #14161: fix the __repr__ of file objects to escape the file name. by Ezio Melotti · 12 years ago
  3. a8d4585 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 12 years ago
  4. 6a1cd1b Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 12 years ago
  5. 9d7601f merge 2.6 by Benjamin Peterson · 12 years ago
  6. 26da920 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  7. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 12 years ago
  8. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 12 years ago
  9. a4c81b0 Fix typo by Éric Araujo · 12 years ago
  10. 32c49d9 use Py_CLEAR by Benjamin Peterson · 12 years ago
  11. fd7e496 Fix indentation. by Antoine Pitrou · 12 years ago
  12. c66ed45 Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 12 years ago
  13. 0f7e2df this is only a borrowed ref in Brett's branch by Benjamin Peterson · 12 years ago
  14. cec6a61 bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 12 years ago
  15. 4c79aec put returns on their own lines by Benjamin Peterson · 12 years ago
  16. 1abe6cd Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 13 years ago
  17. 6f14c33 Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
  18. 5b4b2da Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
  19. 975134e Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  20. 7d1483c Make an error message more understandable and consistent with other error messages. by Raymond Hettinger · 13 years ago
  21. 3040254 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
  22. d784185 Issue #13161: fix doc strings of __i*__ operators by Eli Bendersky · 13 years ago
  23. 3b9d92a Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
  24. 819d8d4 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago
  25. e3b5eda remove unused variable by Benjamin Peterson · 13 years ago
  26. a39de11 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  27. 5f4d870 Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
  28. 8ffbab8 Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 13 years ago
  29. a7b0976 PyEval_CallObject requires a tuple of args (closes #13186) by Benjamin Peterson · 13 years ago
  30. 3624815 Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  31. 63c22fa Issue #7732: Fix a crash on importing a module if a directory has the same name by Victor Stinner · 13 years ago
  32. 4ac5d2c Backport issue #12973 list_repeat fix from 3.x. by Mark Dickinson · 13 years ago
  33. dbbed04 Issue #12973: Fix int.__pow__ overflow checks that invoked undefined behaviour, thereby producing incorrect results on Clang. by Mark Dickinson · 13 years ago
  34. de66ecc fix possible refleaks by Benjamin Peterson · 13 years ago
  35. 15d6b65 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 13 years ago
  36. 5e3a19d merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  37. 304f0f9 Issue #11603: Fix a crash when __str__ is rebound as __repr__. by Antoine Pitrou · 13 years ago
  38. 1616645 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
  39. bf7a266 Fixup repr for dict_proxy objects. by Raymond Hettinger · 13 years ago
  40. cb9bf1a Issue #12164: Document (in docstring) that str.translate accepts None for the first argument. by Mark Dickinson · 13 years ago
  41. 80a09c7 use '->' to indicate return values by Benjamin Peterson · 13 years ago
  42. 7f5cd45 must clear an AttributeError if it is set by Benjamin Peterson · 13 years ago
  43. fd89af5 handle old-style instances by Benjamin Peterson · 13 years ago
  44. 8de87a6 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
  45. e363ec1 (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper by Victor Stinner · 13 years ago
  46. e3685f6 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  47. 44e8168 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  48. 874d59e Issue #11144: Fix corner cases where float-to-int conversion unnecessarily returned a long. by Mark Dickinson · 13 years ago
  49. 72de205 Issue #11634: Remove misleading paragraph from a comment by Eli Bendersky · 13 years ago
  50. f079c9b Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Raymond. by Éric Araujo · 13 years ago
  51. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  52. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  53. 680e6eb Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  54. 28dadd9 Merged revisions 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,87526,87530-87535 via svnmerge from by Georg Brandl · 13 years ago
  55. 3013b16 Merged revisions 88097 via svnmerge from by Antoine Pitrou · 14 years ago
  56. fba3347 Merged revisions 88069 via svnmerge from by Benjamin Peterson · 14 years ago
  57. cd85001 Merged revisions 88066 via svnmerge from by Benjamin Peterson · 14 years ago
  58. cf94b8b Merged revisions 88063 via svnmerge from by Benjamin Peterson · 14 years ago
  59. f4676b0 Merged revisions 87960 via svnmerge from by Benjamin Peterson · 14 years ago
  60. 9b911ca Merged revisions 87952-87954 via svnmerge from by Benjamin Peterson · 14 years ago
  61. 5a72e76 Merged revisions 87834 via svnmerge from by Antoine Pitrou · 14 years ago
  62. ecf8ec6 Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  63. 918c90c Merged revisions 86791 via svnmerge from by Stefan Krah · 14 years ago
  64. 39e32a7 Revert r86726. Sorry about interfering with the rc. by Armin Rigo · 14 years ago
  65. 442e447 A no-op change. It looks like this call was not meant to be a recursive by Armin Rigo · 14 years ago
  66. 6c84085 Improved docstrings for str and unicode methods format and __format__. by Eric Smith · 14 years ago
  67. 33c722b CObject use is marked as a Py3k warning, not a deprecation warning by Jesus Cea · 14 years ago
  68. 2ad17e1 Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  69. 638cee6 Issue #9295: Fix a crash under Windows when calling close() on a file by Antoine Pitrou · 14 years ago
  70. bf77554 iterators passed to writelines() can close their files; don't segfault #10125 by Benjamin Peterson · 14 years ago
  71. dc95424 Merged revisions 85392 via svnmerge from by Benjamin Peterson · 14 years ago
  72. 35c6be0 Merged revisions 85193 via svnmerge from by Benjamin Peterson · 14 years ago
  73. a5d5cc4 Merged revisions 85154 via svnmerge from by Benjamin Peterson · 14 years ago
  74. cb61e5d Issue #9869: Make long() and PyNumber_Long return something of type by Mark Dickinson · 14 years ago
  75. caafd77 Issue #4947: The write() method of sys.stdout and sys.stderr uses their by Victor Stinner · 14 years ago
  76. 9cf85f1 Merged revisions 84408-84409 via svnmerge from by Antoine Pitrou · 14 years ago
  77. 1fcdba8 Merged revisions 84391 via svnmerge from by Antoine Pitrou · 14 years ago
  78. a408350 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago
  79. 6f3d6a9 Merged revisions 84320 via svnmerge from by Benjamin Peterson · 14 years ago
  80. b8de9fa Merged revisions 84106 via svnmerge from by Alexander Belopolsky · 14 years ago
  81. 172e15f Merged revisions 83833,83838-83839,83859,83878 via svnmerge from by Florent Xicluna · 14 years ago
  82. 3ad323e Issue8757: Implicit set-to-frozenset conversion not thread-safe. by Raymond Hettinger · 14 years ago
  83. c535699 Merged revisions 83354,83365 via svnmerge from by Georg Brandl · 14 years ago
  84. 6290bcf Merged revisions 83452,83457,83466,83471,83475,83480,83486 via svnmerge from by Georg Brandl · 14 years ago
  85. d070cc5 Merged revisions 83226-83227,83229-83230,83232 via svnmerge from by Georg Brandl · 14 years ago
  86. e27d044 Recorded merge of revisions 83444 via svnmerge from by Georg Brandl · 14 years ago
  87. 09f0d60 Merged revisions 83395 via svnmerge from by Georg Brandl · 14 years ago
  88. aad57bd Merged revisions 83400 via svnmerge from by Mark Dickinson · 14 years ago
  89. 05f819b #9328: string format methods return strings. by Georg Brandl · 14 years ago
  90. ae7dd8f Merged revisions 82980 via svnmerge from by Stefan Krah · 14 years ago
  91. 0b9201f Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  92. 3266978 Merged revisions 82814 via svnmerge from by Antoine Pitrou · 14 years ago
  93. 5261b10 Merged revisions 82573 via svnmerge from by Senthil Kumaran · 14 years ago
  94. 86e5e17 Merged revisions 81758-81759 via svnmerge from by Ezio Melotti · 14 years ago
  95. df1bc01 Merged revisions 82447 via svnmerge from by Benjamin Peterson · 14 years ago
  96. cf76d1f add space by Benjamin Peterson · 14 years ago
  97. 4c5bc4d remove unused last argument to property_copy by Benjamin Peterson · 14 years ago
  98. 6327bf1 Merged revisions 82248 via svnmerge from by Ezio Melotti · 14 years ago
  99. 2f06b78 Fix extra space. by Ezio Melotti · 14 years ago
  100. 8d64963 Merged revisions 82157 via svnmerge from by Benjamin Peterson · 14 years ago