1. 1cb0cb2 #17296: backport fix for issue 1692335, naive exception pickling. by R David Murray · 11 years ago
  2. 6b30759 #7963: fix error message when 'object' called with arguments. by R David Murray · 12 years ago
  3. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  4. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  5. 3fd4ab3 Issue #17043: The unicode-internal decoder no longer read past the end of by Serhiy Storchaka · 12 years ago
  6. f458a03 Issue #17034: Use Py_CLEAR() in bytesobject.c. by Serhiy Storchaka · 12 years ago
  7. ce9e3c3 Silence a -Wformat-extra-argument warning when compiling. by Gregory P. Smith · 12 years ago
  8. d679377 Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder. by Serhiy Storchaka · 12 years ago
  9. 0599725 Issue #10156: In the interpreter's initialization phase, unicode globals by Serhiy Storchaka · 12 years ago
  10. ace3ad3 Issue #16975: Fix error handling bug in the escape-decode bytes decoder. by Serhiy Storchaka · 12 years ago
  11. 4f5f0e5 Issue #16335: Fix integer overflow in unicode-escape decoder. by Serhiy Storchaka · 12 years ago
  12. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  13. 4fb8cae Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping" by Serhiy Storchaka · 12 years ago
  14. 48e188e Issue #11461: Fix the incremental UTF-16 decoder. Original patch by by Serhiy Storchaka · 12 years ago
  15. dec798e Fix out of bound read in UTF-32 decoder on "narrow Unicode" builds. by Serhiy Storchaka · 12 years ago
  16. 20b654a Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
  17. 0b386d5 Issue #16761: Raise TypeError when int() called with base argument only. by Serhiy Storchaka · 12 years ago
  18. a6be61e Keep y a Py_hash_t instead of Py_uhash_t as it is compared with == -1 and the by Gregory P. Smith · 12 years ago
  19. 27cbcd6 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  20. 62a0d6e 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 · 12 years ago
  21. 27b1ca2 Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  22. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  23. 8cd1c76 Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method. by Mark Dickinson · 12 years ago
  24. 6d26ade Fix compilation on Windows by Christian Heimes · 12 years ago
  25. c64bcbe #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  26. 9892f52 avoid a function call with redundant checks for dict size by Benjamin Peterson · 12 years ago
  27. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  28. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  29. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  30. 9104479 Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= sizeof(long). by Mark Dickinson · 12 years ago
  31. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  32. 6f80f5d Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 12 years ago
  33. c286e58 Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  34. ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  35. 79b97ee Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
  36. e81dc29 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 · 12 years ago
  37. a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  38. d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
  39. 949f331 Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL by Christian Heimes · 12 years ago
  40. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  41. 397e5c9 Issue #15855: added docstrings for memoryview methods and data descriptors. by Alexander Belopolsky · 12 years ago
  42. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  43. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  44. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  45. 6b96286 Check for NULL return value in PyStructSequence_NewType(). Found by Coverity. by Stefan Krah · 12 years ago
  46. 573b1fd Fix str docstring by Nick Coghlan · 12 years ago
  47. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  48. b4bbee2 Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. by Antoine Pitrou · 12 years ago
  49. ddcb620 Issue #15404: Refleak in PyMethodObject repr. by Andrew Svetlov · 12 years ago
  50. 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
  51. 99cc629 Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago
  52. a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  53. a1433fe Remove tab characters by Antoine Pitrou · 12 years ago
  54. 682d94c Use size_t, not ssize_t (issue #14801). by Antoine Pitrou · 12 years ago
  55. 89a6e9a fix possible refleak (closes #14752) by Benjamin Peterson · 12 years ago
  56. ab3da29 close() doesn't take any args (closes #14717) by Benjamin Peterson · 12 years ago
  57. 7295c6a fix calling the classmethod descriptor directly (closes #14699) by Benjamin Peterson · 12 years ago
  58. 7b16687 don't use a slot wrapper from a different special method (closes #14658) by Benjamin Peterson · 12 years ago
  59. bcc17ee Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of an int subclass. by Mark Dickinson · 12 years ago
  60. e42fb30 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 12 years ago
  61. ca819c3 merge 3.1 (#14509) by Benjamin Peterson · 12 years ago
  62. f6622c8 fix build without Py_DEBUG and DNDEBUG (closes #14509) by Benjamin Peterson · 12 years ago
  63. b6af60c adjust formatting by Benjamin Peterson · 12 years ago
  64. 3471bb6 remove extraneous condition by Benjamin Peterson · 12 years ago
  65. 29f8438 merge heads by Benjamin Peterson · 12 years ago
  66. ab3c1c1 be consistent with rest of function by Benjamin Peterson · 12 years ago
  67. 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  68. a8755c5 kill this terribly outdated comment by Benjamin Peterson · 12 years ago
  69. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  70. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 12 years ago
  71. 52c4243 allow cycles throught the __dict__ slot to be cleared (closes #1469629) by Benjamin Peterson · 12 years ago
  72. e965d97 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
  73. e249dca merge 3.2 by Benjamin Peterson · 13 years ago
  74. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  75. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  76. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  77. 496c53d use Py_CLEAR by Benjamin Peterson · 13 years ago
  78. 4b3c784 Fix indentation by Antoine Pitrou · 13 years ago
  79. 37784ba Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 13 years ago
  80. cbe0134 Issue #13913: normalize utf-8 codec name in UTF-8 decoder by Victor Stinner · 13 years ago
  81. efe7c9d this is only a borrowed ref in Brett's branch by Benjamin Peterson · 13 years ago
  82. 2f9c71b bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 13 years ago
  83. 90b1358 put returns on their own lines by Benjamin Peterson · 13 years ago
  84. 2652d25 ready types returned from PyType_FromSpec by Benjamin Peterson · 13 years ago
  85. e28108c adjust declaration by Benjamin Peterson · 13 years ago
  86. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  87. 261896b Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa.c functions in float round. by Mark Dickinson · 13 years ago
  88. beca27a Fix #13834: strip() strips leading and trailing whitespace. by Georg Brandl · 13 years ago
  89. 55f217f Fix refleaks in test_capi (this was easier than I thought!) by Antoine Pitrou · 13 years ago
  90. 1c7ade5 Fix leaking a RuntimeError objects when creating sub-interpreters by Antoine Pitrou · 13 years ago
  91. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 13 years ago
  92. 53aa1d7 fix possible if unlikely leak by Benjamin Peterson · 13 years ago
  93. ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
  94. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  95. 2e87208 Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 13 years ago
  96. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  97. 5418ee0 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
  98. d3baae7 Issue #13161: fix doc strings of __i*__ operators by Eli Bendersky · 13 years ago
  99. ebfaabd Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
  100. c2f0a46 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago