1. 42da889f merge for issue #16160: Subclass support now works for types.SimpleNamespace. by Eric Snow · 12 years ago
  2. 547298c Close #16160: Subclass support now works for types.SimpleNamespace. Thanks to RDM for noticing. by Eric Snow · 12 years ago
  3. cfc22b4 Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. by Antoine Pitrou · 12 years ago
  4. 4a7df9a Issue #14783: Merge changes from 3.3. by Chris Jerdonek · 12 years ago
  5. 042fa65 Issue #14783: Merge changes from 3.2. by Chris Jerdonek · 12 years ago
  6. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  7. 74b38b1 Issue #16148: Small improvements and cleanup. Added version information by Armin Ronacher · 12 years ago
  8. 4c63a97 Cleanup PyUnicode_FromFormatV() for zero padding by Victor Stinner · 12 years ago
  9. 15a1136 Issue #16147: PyUnicode_FromFormatV() doesn't need anymore to allocate a buffer by Victor Stinner · 12 years ago
  10. ff5a848 Issue #16147: PyUnicode_FromFormatV() now raises an error if the argument of by Victor Stinner · 12 years ago
  11. 3921e90 Issue #16147: PyUnicode_FromFormatV() now detects integer overflow when parsing by Victor Stinner · 12 years ago
  12. e215d96 Issue #16147: Rewrite PyUnicode_FromFormatV() to use _PyUnicodeWriter API by Victor Stinner · 12 years ago
  13. cf46d62 Issue #16096: port fix from 3.3 by Mark Dickinson · 12 years ago
  14. fc9adb6 Issue #16096: Fix signed overflow in Objects/longobject.c. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  15. ff9c54a Issue #16096: Merge fixes from 3.3. by Mark Dickinson · 12 years ago
  16. c04ddff Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  17. b70e8a1 and another one by Christian Heimes · 12 years ago
  18. 6314d16 move var declaration to top of block to fix compilation on Windows, fixes a7ec0a1b0f7c by Christian Heimes · 12 years ago
  19. 23c5bb4 Fixed a missing incref introduced by a7ec0a1b0f7c by Armin Ronacher · 12 years ago
  20. 226b1db Added notimplemented_dealloc for better error reporting by Armin Ronacher · 12 years ago
  21. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  22. 8c6db45 In debug mode, unicode_write_cstr() now checks that non-ASCII characters are by Victor Stinner · 12 years ago
  23. 080a2c0 #16127: merge with 3.3. by Ezio Melotti · 12 years ago
  24. e7f9037 #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  25. 1929407 Fix PyUnicode_Format(): return NULL if PyUnicode_READY(uformat) failed by Victor Stinner · 12 years ago
  26. 770e19e Optimize unicode_compare(): use memcmp() when comparing two UCS1 strings by Victor Stinner · 12 years ago
  27. 90db9c4 Enable also ptr==ptr optimization in PyUnicode_Compare() by Victor Stinner · 12 years ago
  28. 9cc98c9 long_to_decimal_string_internal() doesn't need to write the final NULL character by Victor Stinner · 12 years ago
  29. aa77127 unicode_result_wchar(): move the assert() to the "#ifdef Py_DEBUG" block by Victor Stinner · 12 years ago
  30. a4708231 Split the huge PyUnicode_Format() function (+540 lines) into subfunctions by Victor Stinner · 12 years ago
  31. a049443 PyUnicode_Format(): disable overallocation when we are writing the last part by Victor Stinner · 12 years ago
  32. afffce4 Unicode: resize_compact() and resize_inplace() fills also the Unicode strings by Victor Stinner · 12 years ago
  33. c89d28f Issue #15609: Fix refleak introduced by my last optimization by Victor Stinner · 12 years ago
  34. 621ef3d Issue #15609: Optimize str%args for integer argument by Victor Stinner · 12 years ago
  35. b8350f1 upgrade to UCD 6.2 by Benjamin Peterson · 12 years ago
  36. 0e1af28 Fix typo. by Ezio Melotti · 12 years ago
  37. 7c95bb3 Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  38. a1f7655 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
  39. 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
  40. 5710c2a Issue 15959: Merge from 3.2. by Mark Dickinson · 12 years ago
  41. c286e58 Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  42. ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
  43. da064d0 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  44. ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  45. 7ae251a 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
  46. 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
  47. 5f520f4 Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap() by Christian Heimes · 12 years ago
  48. 76c0829 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_qualname returns NULL. CID 715371 by Christian Heimes · 12 years ago
  49. 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
  50. f4f9939 Fixed memory leak in error branch of formatfloat(). CID 719687 by Christian Heimes · 12 years ago
  51. 4556579 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  52. a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  53. c4fe3fe PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
  54. d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
  55. 110ac16 Fixed resource leak to scratch when _PyUnicodeWriter_Prepare fails by Christian Heimes · 12 years ago
  56. f03572d 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
  57. 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
  58. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  59. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  60. f73c69e Issue #15855: added docstrings for memoryview methods and data descriptors new in 3.3. by Alexander Belopolsky · 12 years ago
  61. e370c38 Issue #15855: added docstrings for memoryview methods and data descriptors (merge 3.2). by Alexander Belopolsky · 12 years ago
  62. 397e5c9 Issue #15855: added docstrings for memoryview methods and data descriptors. by Alexander Belopolsky · 12 years ago
  63. 057119b Fix C++-style comment (xlc compilation failure) by Antoine Pitrou · 12 years ago
  64. 6a42bd6 Make super() internal errors RuntimeError instead of SystemError (closes #15839) by Benjamin Peterson · 12 years ago
  65. 4e07a8c merge heads by Benjamin Peterson · 12 years ago
  66. 59043f9 merge 3.2 (#15801) by Benjamin Peterson · 12 years ago
  67. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  68. ea62bd5 Issue #15784: Modify OSError.__str__() to better distinguish between by Richard Oudkerk · 12 years ago
  69. 06e1ab0 Close #15573: use value-based memoryview comparisons (patch by Stefan Krah) by Nick Coghlan · 12 years ago
  70. 07c6e71 Issue #15778: Coerce ImportError.args to a string when it isn't already one. by Brett Cannon · 12 years ago
  71. 5b27c53 Merge 3.2. by Stefan Krah · 12 years ago
  72. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  73. 6adf243 Merge 3.2. by Stefan Krah · 12 years ago
  74. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  75. 8528c31 Issue #15728: Fix leak in PyUnicode_AsWideCharString(). Found by Coverity. by Stefan Krah · 12 years ago
  76. 7fda33b Mereg 3.2. by Stefan Krah · 12 years ago
  77. 6b96286 Check for NULL return value in PyStructSequence_NewType(). Found by Coverity. by Stefan Krah · 12 years ago
  78. 0e41628 Merge str docstring fix from 3.2 by Nick Coghlan · 12 years ago
  79. 573b1fd Fix str docstring by Nick Coghlan · 12 years ago
  80. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  81. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  82. b3f5501 Close #15534: Fix a typo in the fast search function of the string library (_s => s) by Victor Stinner · 12 years ago
  83. 5562d9d Issue #1692335: Move initial args assignment to BaseException.__new__ by Richard Oudkerk · 12 years ago
  84. e4c0799 Add unused parameter to a METH_NOARGS function. by Stefan Krah · 12 years ago
  85. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  86. 3bbd2fa Issue #15456: Fix code __sizeof__ after #12399 change. by Martin v. Löwis · 12 years ago
  87. b4bbee2 Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. by Antoine Pitrou · 12 years ago
  88. a036476 Merge 3.2 by Andrew Svetlov · 12 years ago
  89. ddcb620 Issue #15404: Refleak in PyMethodObject repr. by Andrew Svetlov · 12 years ago
  90. f4cc216 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
  91. 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 12 years ago
  92. 01ac8b6 Use correct types for ASCII_CHAR_MASK integer constants. by Mark Dickinson · 12 years ago
  93. f87289b Issue #15229: An OSError subclass whose __init__ doesn't call back by Antoine Pitrou · 12 years ago
  94. a504a7a Issue #15055: update dictnotes.txt. Patch by Mark Shannon. by Antoine Pitrou · 12 years ago
  95. 66a3a7e Try to fix crash on x86 OpenIndiana buildbot. by Antoine Pitrou · 12 years ago
  96. 1351ca6 Replace assert() with a more informative fatal error. by Antoine Pitrou · 12 years ago
  97. bb78f57 Use struct member (ht_type) instead of casting pointers. by Antoine Pitrou · 12 years ago
  98. 9c56409 Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. by Martin v. Löwis · 12 years ago
  99. 106c414 Issue #14923: Optimize continuation-byte check in UTF-8 decoding. Patch by Serhiy Storchaka. by Mark Dickinson · 12 years ago
  100. 99cc629 Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec(). by Antoine Pitrou · 12 years ago