1. 742d871 Put the defines in the logical section and fix indentation. by Raymond Hettinger · 11 years ago
  2. 583cd03 Minor code beautification. by Raymond Hettinger · 11 years ago
  3. 4ea9080 Improve code clarity by removing two unattractive macros. by Raymond Hettinger · 11 years ago
  4. 8f8839e Remove the freelist scheme for setobjects. by Raymond Hettinger · 11 years ago
  5. 04fd9dd Small rearrangement to bring together the three functions for probing the hash table. by Raymond Hettinger · 11 years ago
  6. ae7b00e Move the overview comment to the top of the file. by Raymond Hettinger · 11 years ago
  7. b237295 Nerge 3.3 into default. by Tim Peters · 11 years ago
  8. eaa3bcc Issue #18942: sys._debugmallocstats() output was damaged on Windows. by Tim Peters · 11 years ago
  9. c56e0e3 Minor touchups. by Raymond Hettinger · 11 years ago
  10. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago
  11. a35adf5 Instead of XORed indicies, switch to a hybrid of linear probing and open addressing. by Raymond Hettinger · 11 years ago
  12. 6c3c1cc Update copyright. by Raymond Hettinger · 11 years ago
  13. 95c0d67 Further reduce the cost of hash collisions by inspecting an additional nearby entry. by Raymond Hettinger · 11 years ago
  14. fb13721 Close #18780: %-formatting now prints value for int subclasses with %d, %i, and %u codes. by Ethan Furman · 11 years ago
  15. afe8909 Tighten-up the lookkey() logic and beautify the code a bit. by Raymond Hettinger · 11 years ago
  16. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  17. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  18. 33824f6 Restore changeset 5bd9db528aed (issue #18408) by Victor Stinner · 11 years ago
  19. e513210 Issue #18408: _PyObject_Dump() now saves/restores the current exception by Victor Stinner · 11 years ago
  20. 1544fc5 Various clarifications based on feedback & questions over the years. by Tim Peters · 11 years ago
  21. ec8147b Various clarifications based on feedback & questions over the years. by Tim Peters · 11 years ago
  22. 9d95254 Issue #18772: fix the gdb plugin after the set implementation changes by Antoine Pitrou · 11 years ago
  23. 9154193 Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures. by Antoine Pitrou · 11 years ago
  24. bfc1e1a Add the same dummy type that is used in dictionaries. by Raymond Hettinger · 11 years ago
  25. a1db945 Add line explaining the "%sort" test. by Tim Peters · 11 years ago
  26. 01e75a6 Add line explaining the "%sort" test. by Tim Peters · 11 years ago
  27. fcf3b50 Issue 18797: Remove unneeded refcount adjustments for dummy objects. by Raymond Hettinger · 11 years ago
  28. 5bb1b1d Hoist the global dummy lookup out of the inner loop for set_merge(). by Raymond Hettinger · 11 years ago
  29. 929cbac Remove a redundant hash table probe (this was artifact from an earlier draft of the patch). by Raymond Hettinger · 11 years ago
  30. ae9e616 Issue 18772: Restore set dummy object back to unicode and restore the identity checks in lookkey(). by Raymond Hettinger · 11 years ago
  31. 3c0a4f5 Issue18771: Reduce the cost of hash collisions for set objects. by Raymond Hettinger · 11 years ago
  32. 07351a0 Remove the else-clause because the conditions are no longer mutually exclusive. by Raymond Hettinger · 11 years ago
  33. 237b34b Use a known unique object for the dummy entry. by Raymond Hettinger · 11 years ago
  34. 8fa8ee3 Issue #18701: Remove support of old CPython versions (<3.0) from C code. by Serhiy Storchaka · 11 years ago
  35. 8ad3919 Hoist the global "dummy" lookup outside of the reinsertion loop. by Raymond Hettinger · 11 years ago
  36. d06eeb4 merge by Raymond Hettinger · 11 years ago
  37. b1b915c Issue 18719: Remove a false optimization by Raymond Hettinger · 11 years ago
  38. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  39. c629d4c Replace outdated optimization with clearer code that compiles better. by Raymond Hettinger · 11 years ago
  40. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  41. c86d7e9 Silence compiler warning for an unused declaration by Raymond Hettinger · 11 years ago
  42. e56666d Silence compiler warning about an uninitialized variable by Raymond Hettinger · 11 years ago
  43. 5ed1b38 merge by Raymond Hettinger · 11 years ago
  44. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  45. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 11 years ago
  46. 02515f7 Minor consistency fixes for some longobject.c exception messages: by Mark Dickinson · 11 years ago
  47. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  48. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  49. 5b3b100 Issue #18520: Fix _PyDict_GetItemId(), suppress _PyUnicode_FromId() error by Victor Stinner · 11 years ago
  50. 34f96b8 Issue #18520: Fix PyFunction_NewWithQualName() error handling by Victor Stinner · 11 years ago
  51. 4d1f5d6 Reindent PyFunction_NewWithQualName() by Victor Stinner · 11 years ago
  52. 1c8f059 Issue #18520: Add a new PyStructSequence_InitType2() function, same than by Victor Stinner · 11 years ago
  53. 6895947 Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  54. c731bbe Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  55. b578735 Check return value of PyType_Ready(&EncodingMapType) CID 486654 by Christian Heimes · 11 years ago
  56. 26532f7 Check return value of PyType_Ready(&EncodingMapType) CID 486654 by Christian Heimes · 11 years ago
  57. de4d183 Issue #18327: Fix argument order in call to compatible_for_assignment(oldto, newto, attr). by Christian Heimes · 11 years ago
  58. 2c40f64 Issue #18408: Fix list_ass_slice(), handle list_resize() failure by Victor Stinner · 11 years ago
  59. 8e47832 Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an by Victor Stinner · 11 years ago
  60. f97dfd7 Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception set by Victor Stinner · 11 years ago
  61. 08a80b1 longobject.c: add an assertion to ensure that MEDIUM_VALUE() is only called on by Victor Stinner · 11 years ago
  62. 8aed6f1 Issue #18408: Rewrite NEGATE() macro in longobject.c to handle PyLong_FromLong() failure by Victor Stinner · 11 years ago
  63. 5967bf4 Issue #18408: Fix PyType_Ready(), handle _PyDict_SetItemId() failure by Victor Stinner · 11 years ago
  64. e901d1f Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure by Victor Stinner · 11 years ago
  65. 095d99f Issue #18408: Fix listpop(), handle list_ass_slice() failure by Victor Stinner · 11 years ago
  66. 9a146ee Issue #18408: Fix structseq_reduce(), handle PyDict_SetItemString() failure by Victor Stinner · 11 years ago
  67. 26f9199 Close #18469: Replace PyDict_GetItemString() with _PyDict_GetItemId() in structseq.c by Victor Stinner · 11 years ago
  68. 3997cfd Cleanup type_call() to ease debug by Victor Stinner · 11 years ago
  69. 1b63493 Issue #18408: Py_ReprLeave() now saves/restores the current exception, by Victor Stinner · 11 years ago
  70. ac2a4fe Issue #18408: dict_new() now fails on new_keys_object() error by Victor Stinner · 11 years ago
  71. a9f61a5 Cleanup dictobject.c by Victor Stinner · 11 years ago
  72. fdcbab9 Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() error by Victor Stinner · 11 years ago
  73. 32fd6ea Issue #18408: Fix list.extend(), handle list_resize() failure by Victor Stinner · 11 years ago
  74. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  75. 53510cd Issue #18408: type_new() and PyType_FromSpecWithBases() now raise MemoryError by Victor Stinner · 11 years ago
  76. e699e5a Issue #18408: Don't check unicode consistency in _PyUnicode_HAS_UTF8_MEMORY() by Victor Stinner · 11 years ago
  77. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 11 years ago
  78. a41f085 Issue #18408: pmerge() help of mro_implementation() now raises MemoryError on by Victor Stinner · 11 years ago
  79. 9035ad9 Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception was by Victor Stinner · 11 years ago
  80. 2e8474d Issue #18408: slot_tp_str() must not fallback on slot_tp_repr() on error by Victor Stinner · 11 years ago
  81. 54e4ca7 typeobject.c: remove trailing spaces by Victor Stinner · 11 years ago
  82. c426636 Issue #18408: Fix _PyMem_DebugRealloc() by Victor Stinner · 11 years ago
  83. 9e6b4d7 Issue #18408: _PyUnicodeWriter_Finish() now clears its buffer attribute in all by Victor Stinner · 11 years ago
  84. 15a0bd3 Issue #18408: Fix _PyUnicodeWriter_Finish(): clear writer->buffer, by Victor Stinner · 11 years ago
  85. 9812af8 Issue #18408: Fix PyType_Ready() and type.__bases__ setter to handle by Victor Stinner · 11 years ago
  86. b27cd3e Issue #18408: Fix list.pop() to handle list_resize() failure (MemoryError). by Victor Stinner · 11 years ago
  87. c9b7f51 Issue #18408: Fix PyDict_New() to handle correctly new_keys_object() failure by Victor Stinner · 11 years ago
  88. 49fc8ec Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup() by Victor Stinner · 11 years ago
  89. 6f8eeee Issue #18203: Fix _Py_DecodeUTF8_surrogateescape(), use PyMem_RawMalloc() as _Py_char2wchar() by Victor Stinner · 11 years ago
  90. 0e2d3cf Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray() by Victor Stinner · 11 years ago
  91. 1a7425f Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  92. 725e668 Issue #3329: Fix _PyObject_ArenaVirtualFree() by Victor Stinner · 11 years ago
  93. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  94. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  95. d47802e Fix ref leak in error case of unicode find, count, formatlong by Christian Heimes · 11 years ago
  96. d47a045 Fix ref leak in error case of unicode index by Christian Heimes · 11 years ago
  97. ea71a52 Fix ref leak in error case of unicode rindex and rfind by Christian Heimes · 11 years ago
  98. 305e49e Fix memory leak in endswith by Christian Heimes · 11 years ago
  99. cd83fa8 Issue #13483: Use VirtualAlloc in obmalloc on Windows. by Martin v. Löwis · 11 years ago
  100. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago