1. d696732 Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. by Antoine Pitrou · 10 years ago
  2. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  3. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  4. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 10 years ago
  5. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  6. e02de8c Fix minor bug in dict.__contains__ docstring. by Meador Inge · 11 years ago
  7. 61272b7 Issue #19273: The marker comments Argument Clinic uses have been changed by Larry Hastings · 11 years ago
  8. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  9. f91929b Issue #19646: repr(dict) now uses _PyUnicodeWriter API for better performances by Victor Stinner · 11 years ago
  10. ed4a1c5 Argument Clinic: rename "self" to "module" for module-level functions. by Larry Hastings · 11 years ago
  11. 5fd2e5a Issue #19512: Add a new _PyDict_DelItemId() function, similar to by Victor Stinner · 11 years ago
  12. 3182680 Issue #16612: Add "Argument Clinic", a compile-time preprocessor by Larry Hastings · 11 years ago
  13. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago
  14. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  15. 5b3b100 Issue #18520: Fix _PyDict_GetItemId(), suppress _PyUnicode_FromId() error by Victor Stinner · 11 years ago
  16. f97dfd7 Issue #18408: Fix dict_repr(), don't call PyObject_Repr() with an exception set by Victor Stinner · 11 years ago
  17. ac2a4fe Issue #18408: dict_new() now fails on new_keys_object() error by Victor Stinner · 11 years ago
  18. a9f61a5 Cleanup dictobject.c by Victor Stinner · 11 years ago
  19. fdcbab9 Issue #18408: Fix PyDict_GetItemString(), suppress PyUnicode_FromString() error by Victor Stinner · 11 years ago
  20. c9b7f51 Issue #18408: Fix PyDict_New() to handle correctly new_keys_object() failure by Victor Stinner · 11 years ago
  21. 2f6fe51 merge by Raymond Hettinger · 11 years ago
  22. 36f74aa Issue #17563: Fix dict resize performance regression. by Raymond Hettinger · 11 years ago
  23. f275416 Touch up grammar for dict.update() docstring. by Brett Cannon · 11 years ago
  24. 5589850 fix warning (closes #17327) by Benjamin Peterson · 11 years ago
  25. 00e9886 Add PyDict_SetDefault. (closes #17327) by Benjamin Peterson · 11 years ago
  26. 42f382f merge 3.3 (#17328) by Benjamin Peterson · 11 years ago
  27. b1efa53 fix possible setdefault refleak (closes #17328) by Benjamin Peterson · 11 years ago
  28. 0e9958b Issue #16562: Optimize dict equality testing. by Antoine Pitrou · 12 years ago
  29. 591c921 merge 3.2 by Benjamin Peterson · 12 years ago
  30. 9892f52 avoid a function call with redundant checks for dict size by Benjamin Peterson · 12 years ago
  31. d97eb0d merge 3.2 (#16345) by Benjamin Peterson · 12 years ago
  32. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  33. a504a7a Issue #15055: update dictnotes.txt. Patch by Mark Shannon. by Antoine Pitrou · 12 years ago
  34. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  35. 9a23490 Issue #14417: Mutating a dict during lookup now restarts the lookup instead of raising a RuntimeError (undoes issue #14205). by Antoine Pitrou · 12 years ago
  36. 2d169b2 Make the reference counting of dictkeys objects participate in refleak hunting by Antoine Pitrou · 12 years ago
  37. a6f195e change insertdict to not steal references (#13903) by Benjamin Peterson · 12 years ago
  38. 15ee821 distiguish between refusing to creating shared keys and error (#13903) by Benjamin Peterson · 12 years ago
  39. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  40. 7ce67e4 fix dict gc tracking (#13903) by Benjamin Peterson · 12 years ago
  41. db780d0 fix instance dicts with str subclasses (#13903) by Benjamin Peterson · 12 years ago
  42. 53b9771 don't make shared keys with dict subclasses by Benjamin Peterson · 12 years ago
  43. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  44. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  45. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  46. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  47. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  48. 198b291 Close #14205: dict lookup raises a RuntimeError if the dict is modified during by Victor Stinner · 12 years ago
  49. 70d2717 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
  50. 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
  51. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
  52. ac0675c Small clarification in docstring of dict.update(): the positional argument is not required. by Georg Brandl · 13 years ago
  53. f928b5d Merge with 3.2. by Georg Brandl · 13 years ago
  54. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  55. 24bd5ad Merge 3.2 by Petri Lehtinen · 13 years ago
  56. a94200e Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 13 years ago
  57. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  58. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  59. d1a9cc2 dictviews_or() uses _Py_identifier by Victor Stinner · 13 years ago
  60. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  61. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  62. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  63. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  64. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  65. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  66. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  67. 7529afc Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  68. dd42154 Issue 10221: Improve error message for dict.pop(). by Raymond Hettinger · 14 years ago
  69. fbb1c61 Follow up to #9778: fix regressions on 64-bit Windows builds by Antoine Pitrou · 14 years ago
  70. 00da4e0 Remove unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  71. e6baa46 fix prototype by Benjamin Peterson · 14 years ago
  72. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  73. 045b3ba Issue #9212: Added the missing isdisjoint method to the dict_keys and by Daniel Stutzbach · 14 years ago
  74. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  75. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  76. 3937083 Make (most of) Python's tests pass under Thread Sanitizer. by Jeffrey Yasskin · 14 years ago
  77. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  78. 807e98e Merged revisions 78541 via svnmerge from by Ezio Melotti · 14 years ago
  79. 7f807b7 Merged revisions 78515-78516,78522 via svnmerge from by Ezio Melotti · 14 years ago
  80. 01a3052 Merged revisions 74264 via svnmerge from by Georg Brandl · 15 years ago
  81. e223eb8 Merged revisions 74075,74187,74197,74201,74216,74225 via svnmerge from by Alexandre Vassalotti · 15 years ago
  82. e5caf10 Merged revisions 74140 via svnmerge from by Benjamin Peterson · 15 years ago
  83. 9d7c3cd Merged revisions 74139 via svnmerge from by Benjamin Peterson · 15 years ago
  84. 87c8d87 Merged revisions 73196,73278-73280,73299,73308,73312-73313,73317-73318,73321,73324,73331,73335,73340,73363 via svnmerge from by Benjamin Peterson · 15 years ago
  85. 0ffaaa6 Merged revisions 72958 via svnmerge from by Benjamin Peterson · 15 years ago
  86. a720559 Merged revisions 72957 via svnmerge from by Benjamin Peterson · 15 years ago
  87. acc5d6b Merged revisions 70550 via svnmerge from by Antoine Pitrou · 15 years ago
  88. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 15 years ago
  89. b0d56af Give dict views a helpful __repr__. by Raymond Hettinger · 15 years ago
  90. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  91. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 16 years ago
  92. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  93. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  94. d1abd25 Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash level indicator that the default hash implementation has not been inherited by Nick Coghlan · 16 years ago
  95. 4118174 Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from by Benjamin Peterson · 16 years ago
  96. 4d45bfe Merged revisions 64518,64521-64525,64528-64533 via svnmerge from by Robert Schuppenies · 16 years ago
  97. 3a75b22 remove unused docstring by Benjamin Peterson · 16 years ago
  98. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago
  99. 23daade0 Merged revisions 61038,61042-61045,61047,61049-61053,61055-61057 via svnmerge from by Christian Heimes · 16 years ago
  100. 77c02eb Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617-60678 via svnmerge from by Christian Heimes · 16 years ago