1. 5ed1b38 merge by Raymond Hettinger · 11 years ago
  2. e56666d Silence compiler warning about an uninitialized variable by Raymond Hettinger · 11 years ago
  3. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  4. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  5. 02515f7 Minor consistency fixes for some longobject.c exception messages: by Mark Dickinson · 11 years ago
  6. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  7. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  8. 5b3b100 Issue #18520: Fix _PyDict_GetItemId(), suppress _PyUnicode_FromId() error by Victor Stinner · 11 years ago
  9. 34f96b8 Issue #18520: Fix PyFunction_NewWithQualName() error handling by Victor Stinner · 11 years ago
  10. 4d1f5d6 Reindent PyFunction_NewWithQualName() by Victor Stinner · 11 years ago
  11. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  12. 6895947 Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  13. c731bbe Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  14. b578735 Check return value of PyType_Ready(&EncodingMapType) CID 486654 by Christian Heimes · 11 years ago
  15. 26532f7 Check return value of PyType_Ready(&EncodingMapType) CID 486654 by Christian Heimes · 11 years ago
  16. de4d183 Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, newto, attr). by Christian Heimes · 11 years ago
  17. 2c40f64 Issue #18408: Fix list_ass_slice(), handle list_resize() failure by Victor Stinner · 11 years ago
  18. 8e47832 Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an by Victor Stinner · 11 years ago
  19. f97dfd7 Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception set by Victor Stinner · 11 years ago
  20. 08a80b1 longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called on by Victor Stinner · 11 years ago
  21. 8aed6f1 Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLong() failure by Victor Stinner · 11 years ago
  22. 5967bf4 Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failure by Victor Stinner · 11 years ago
  23. e901d1f Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure by Victor Stinner · 11 years ago
  24. 095d99f Issue #18408: Fix listpop(), handle list_ass_slice() failure by Victor Stinner · 11 years ago
  25. 9a146ee Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  26. 26f9199 Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c by Victor Stinner · 11 years ago
  27. 3997cfd Cleanup type_call() to ease debug by Victor Stinner · 11 years ago
  28. 1b63493 Issue #18408: Py_ReprLeave() now saves/restores the current exception, by Victor Stinner · 11 years ago
  29. ac2a4fe Issue #18408: dict_new() now fails on new_keys_object() error by Victor Stinner · 11 years ago
  30. a9f61a5 Cleanup dictobject.c by Victor Stinner · 11 years ago
  31. fdcbab9 Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() error by Victor Stinner · 11 years ago
  32. 32fd6ea Issue #18408: Fix list.extend(), handle list_resize() failure by Victor Stinner · 11 years ago
  33. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  34. 53510cd Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError by Victor Stinner · 11 years ago
  35. e699e5a Issue #18408: Don't check unicode consistency in _PyUnicode_HAS_UTF8_MEMORY() by Victor Stinner · 11 years ago
  36. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 11 years ago
  37. a41f085 Issue #18408: pmerge() help of mro_implementation() now raises MemoryError on by Victor Stinner · 11 years ago
  38. 9035ad9 Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception was by Victor Stinner · 11 years ago
  39. 2e8474d Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error by Victor Stinner · 11 years ago
  40. 54e4ca7 typeobject.c: remove trailing spaces by Victor Stinner · 11 years ago
  41. c426636 Issue #18408: Fix _PyMem_DebugRealloc() by Victor Stinner · 11 years ago
  42. 9e6b4d7 Issue #18408: _PyUnicodeWriter_Finish() now clears its buffer attribute in all by Victor Stinner · 11 years ago
  43. 15a0bd3 Issue #18408: Fix _PyUnicodeWriter_Finish(): clear writer->buffer, by Victor Stinner · 11 years ago
  44. 9812af8 Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handle by Victor Stinner · 11 years ago
  45. b27cd3e Issue #18408: Fix list.pop() to handle list_resize() failure (MemoryError). by Victor Stinner · 11 years ago
  46. c9b7f51 Issue #18408: Fix PyDict_New() to handle correctly new_keys_object() failure by Victor Stinner · 11 years ago
  47. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  48. 6f8eeee Issue #18203: Fix _Py_DecodeUTF8_surrogateescape(), use PyMem_RawMalloc() as _Py_char2wchar() by Victor Stinner · 11 years ago
  49. 0e2d3cf Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray() by Victor Stinner · 11 years ago
  50. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  51. 725e668 Issue #3329: Fix _PyObject_ArenaVirtualFree() by Victor Stinner · 11 years ago
  52. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  53. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  54. d47802e Fix ref leak in error case of unicode find, count, formatlong by Christian Heimes · 11 years ago
  55. d47a045 Fix ref leak in error case of unicode index by Christian Heimes · 11 years ago
  56. ea71a52 Fix ref leak in error case of unicode rindex and rfind by Christian Heimes · 11 years ago
  57. 305e49e Fix memory leak in endswith by Christian Heimes · 11 years ago
  58. cd83fa8 Issue #13483: Use VirtualAlloc in obmalloc on Windows. by Martin v. Löwis · 11 years ago
  59. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  60. 7660b88 Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index) by Victor Stinner · 11 years ago
  61. 2199c38 Issue #9566: Fix a compiler warning in tupleiter_setstate() on Windows x64 by Victor Stinner · 11 years ago
  62. c89533f Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  63. 8eeae21 Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise by Serhiy Storchaka · 11 years ago
  64. 5e946ba Fix compilation warning with gcc 4.8 (unused typedef) by Antoine Pitrou · 11 years ago
  65. 36f01ad Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  66. 4d70562 Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  67. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  68. 3164f5d merge 3.3 (#18183) by Benjamin Peterson · 11 years ago
  69. 7e30373 remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value (see #18183) by Benjamin Peterson · 11 years ago
  70. 9f067f4 Issue #9566: Fix compiler warning on Windows 64-bit by Victor Stinner · 11 years ago
  71. 9d77664 Issue #9566: Fix a compiler warning on Windows 64-bit in namespace_init() by Victor Stinner · 11 years ago
  72. a2d5698 Issuse #17932: Fix an integer overflow issue on Windows 64-bit in tuple by Victor Stinner · 11 years ago
  73. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  74. e0b99ba Close #17932: Fix an integer overflow issue on Windows 64-bit in iterators: by Victor Stinner · 11 years ago
  75. d2b58a9 only recursively expand in the format spec (closes #17644) by Benjamin Peterson · 11 years ago
  76. 36f74aa Issue #17563: Fix dict resize performance regression. by Raymond Hettinger · 11 years ago
  77. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  78. 4d94474 rewrite the parsing of field names to be more consistent wrt recursive expansion by Benjamin Peterson · 11 years ago
  79. 4895363 merge 3.3 by Benjamin Peterson · 11 years ago
  80. 2f6fe51 merge by Raymond Hettinger · 11 years ago
  81. e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 11 years ago
  82. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  83. 159ae41 when an argument is a cell, set the local copy to NULL (see #17927) by Benjamin Peterson · 11 years ago
  84. f275416 Touch up grammar for dict.update() docstring. by Brett Cannon · 11 years ago
  85. 7ce35a1 Issue #17237: Fix crash in the ASCII decoder on m68k. by Antoine Pitrou · 11 years ago
  86. 8b0e984 Issue #17237: Fix crash in the ASCII decoder on m68k. by Antoine Pitrou · 11 years ago
  87. 6832c81 #17927: Keep frame from referencing cell-ified arguments. by Guido van Rossum · 11 years ago
  88. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  89. 6f75a3e Use Py_intptr_t to store the difference between two pointers, instead of int by Victor Stinner · 11 years ago
  90. f4f2424 Fix uninitialized value in charmap_decode_mapping() by Victor Stinner · 11 years ago
  91. 8cecc8c Issue #7330: Implement width and precision (ex: "%5.3s") for the format string by Victor Stinner · 11 years ago
  92. df6931d Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  93. 957a23b Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  94. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  95. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  96. 5263c13 Merge removal of trailing whitespace from 3.3. by Ezio Melotti · 12 years ago
  97. 6b02772 Remove trailing whitespace. by Ezio Melotti · 12 years ago
  98. bb4503f Partial revert of changeset 9744b2df134c by Victor Stinner · 12 years ago
  99. fb161b1 Split PyUnicode_DecodeCharmap() into subfunction for readability by Victor Stinner · 12 years ago
  100. 170ca6f Fix bug in Unicode decoders related to _PyUnicodeWriter by Victor Stinner · 12 years ago