1. 1fba624 The tracking statistics were actually too pessimistic by Antoine Pitrou · 16 years ago
  2. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 16 years ago
  3. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 16 years ago
  4. a412717 Punctuation fix; expand dict.update docstring to be clearer by Andrew M. Kuchling · 16 years ago
  5. 1e13ea9 - Issue #3537: Fix an assertion failure when an empty but presized dict by Georg Brandl · 16 years ago
  6. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  7. a27474c Issue 3230: Do not the set specific size macro. by Raymond Hettinger · 16 years ago
  8. 161b921 Corrected inconsistencies in sizeof tests and addressed issue pointed by Robert Schuppenies · 16 years ago
  9. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  10. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  11. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  12. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  13. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
  14. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  15. d65ab95 Fix tabs. by Georg Brandl · 17 years ago
  16. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  17. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  18. 09bde04 Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. by Christian Heimes · 17 years ago
  19. a37430a dict.copy() rises from the ashes. Revert r60687. by Raymond Hettinger · 17 years ago
  20. 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 17 years ago
  21. 48397d6 Use prefix decrement by Christian Heimes · 17 years ago
  22. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
  23. b4ee4a1 Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet. by Christian Heimes · 17 years ago
  24. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  25. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 17 years ago
  26. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  27. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  28. ede3a32 Spaces vs. Tabs. by Georg Brandl · 17 years ago
  29. 31645ba Fix bug #1517, a segfault in lookdict(). by Guido van Rossum · 17 years ago
  30. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  31. 3444879 Optimize common case for dict.fromkeys(). by Raymond Hettinger · 17 years ago
  32. cdcf887 Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset counts for example. by Raymond Hettinger · 17 years ago
  33. 77ae87c Remove file-level typedefs that were inconsistently used throughout the file. by Brett Cannon · 17 years ago
  34. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  35. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  36. c792629 Whitespace cleanup by Neal Norwitz · 17 years ago
  37. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  38. e3146f5 Add test and fix for fromkeys() optional argument. by Raymond Hettinger · 18 years ago
  39. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  40. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  41. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  42. 0922d71 SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 18 years ago
  43. 7b932da Fix refleak by Neal Norwitz · 18 years ago
  44. b9f4ad3 Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 18 years ago
  45. a5ccda9 Fix warnings with HP's C compiler. It doesn't recognize that infinite by Neal Norwitz · 18 years ago
  46. a22975f Fix SF bug #1546288, crash in dict_equal. by Neal Norwitz · 18 years ago
  47. 0067b5f Typo fixes by Andrew M. Kuchling · 18 years ago
  48. 48808a1 Add some asserts that we got good params passed by Neal Norwitz · 18 years ago
  49. acd0d6d SF bug #1503294. by Armin Rigo · 18 years ago
  50. d770ebd Armin committed his patch while I was reviewing it (I'm sure by Tim Peters · 18 years ago
  51. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  52. 33f4a6a dict_print(): So that Neal & I don't spend the rest of by Tim Peters · 18 years ago
  53. 6381443 dict_print(): Explicitly narrow the return value by Tim Peters · 18 years ago
  54. 5e1b45d No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEntr returns an int by Neal Norwitz · 18 years ago
  55. d3881b0 Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | in comment by Neal Norwitz · 18 years ago
  56. 80af59c Remove stray | in comment by Neal Norwitz · 18 years ago
  57. 9b10f7e Convert relevant dict internals to Py_ssize_t. by Tim Peters · 18 years ago
  58. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  59. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
  60. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  61. 4b92a82 Oops. Fix syntax for C89 compilers. by Guido van Rossum · 19 years ago
  62. 1968ad3 - Patch 1433928: by Guido van Rossum · 19 years ago
  63. e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago
  64. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  65. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 19 years ago
  66. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  67. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  68. 60b2996 Fixed English in a comment; trimmed trailing whitespace; no code changes. by Tim Peters · 19 years ago
  69. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  70. f81e450 Fix nits. by Raymond Hettinger · 19 years ago
  71. 186e739 SF patch #1200051: Small optimization for PyDict_Merge() by Raymond Hettinger · 19 years ago
  72. 1356f78 SF bug #1183742: PyDict_Copy() can return non-NULL value on error by Raymond Hettinger · 20 years ago
  73. 07ead17 Code simplification -- eliminate lookup when value is known in advance. by Raymond Hettinger · 20 years ago
  74. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  75. 9e1bfe7 Disabling end-of-loop code not reached warning on SunPro by Nicholas Bastin · 20 years ago
  76. d70ad8a Update docstring for dict.update() to match the new realities. by Walter Dörwald · 20 years ago
  77. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 21 years ago
  78. 09240f6 GCC was complaining that 'value' in dictiter_iternextvalue() wasn't by Guido van Rossum · 21 years ago
  79. 0690512 Factor out a double lookup. by Raymond Hettinger · 21 years ago
  80. 0ce6dc8 Make the new dictionary iterators transparent with respect to length. by Raymond Hettinger · 21 years ago
  81. 019a148 Optimize dictionary iterators. by Raymond Hettinger · 21 years ago
  82. 4344278 Dictionary optimizations: by Raymond Hettinger · 21 years ago
  83. ebedb2f Factor out code common to PyDict_Copy() and PyDict_Merge(). by Raymond Hettinger · 21 years ago
  84. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 21 years ago
  85. 7083bb7 Oops. Return -1 to distinguish error from empty dict. by Jeremy Hylton · 21 years ago
  86. 0c66967 Simplify previous checkin -- a new function was not needed. by Raymond Hettinger · 21 years ago
  87. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  88. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
  89. 574aa32 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
  90. c8d2290 SF patch #729395: Dictionary tuning by Raymond Hettinger · 21 years ago
  91. 3539f6b SF patch #729395: Dictionary tuning by Raymond Hettinger · 21 years ago
  92. 930427b Add a reference to dictnotes.txt. It does no good if you don't know it's by Raymond Hettinger · 21 years ago
  93. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  94. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  95. a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 22 years ago
  96. 0732301 Add closing ) in comment by Neal Norwitz · 22 years ago
  97. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 22 years ago
  98. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  99. 32b4a1b Constify char* API. Fixes #651363. 2.2 candidate. by Martin v. Löwis · 22 years ago
  100. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago