1. 42e1ea9 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 7 years ago
  2. 6779652 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 7 years ago
  3. d741ed4 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 7 years ago
  4. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 7 years ago
  5. 684ef2c Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*` by Yury Selivanov · 8 years ago
  6. 833c626 Issue #28544: Fix compilation of _asynciomodule.c on Windows by Yury Selivanov · 8 years ago
  7. e036ef8 Issue #27358: Optimized merging var-keyword arguments and improved error by Serhiy Storchaka · 8 years ago
  8. 611b0fa Add _PyDict_CheckConsistency() by Victor Stinner · 8 years ago
  9. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  10. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  11. a4348cc Add documentation to the dict implementation by Victor Stinner · 8 years ago
  12. 0ce7a3a Issue #25914: Fixed and simplified OrderedDict.__sizeof__. by Serhiy Storchaka · 8 years ago
  13. b9d98d5 Issue #24483: C implementation of functools.lru_cache() now calculates key's by Serhiy Storchaka · 9 years ago
  14. 8c7ed01 Issue #16991: Use PyObject_TypeCheck instead of PyObject_IsInstance. by Eric Snow · 9 years ago
  15. 96c6af9 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  16. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  17. 39992d3 do not expose known hash api in stable API by Benjamin Peterson · 10 years ago
  18. 4b74fba Issue 21101: Internal API for dict getitem and setitem where the hash value is known. by Raymond Hettinger · 10 years ago
  19. 1c0689c Issue #19526: Exclude all new API from the stable ABI. by Martin v. Löwis · 10 years ago
  20. 8ea8650 Issue #19512, #19526: Exclude the new _PyDict_DelItemId() function from the by Victor Stinner · 11 years ago
  21. 5fd2e5a Issue #19512: Add a new _PyDict_DelItemId() function, similar to by Victor Stinner · 11 years ago
  22. 00e9886 Add PyDict_SetDefault. (closes #17327) by Benjamin Peterson · 11 years ago
  23. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  24. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  25. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  26. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  27. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  28. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  29. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  30. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  31. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  32. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  33. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 15 years ago
  34. cb31433 Added missing prototype for PyDict_GetItemWithError(). by Alexandre Vassalotti · 16 years ago
  35. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  36. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 16 years ago
  37. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  38. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  39. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  40. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  41. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  42. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  43. 87c1afa Fix name problem in previous checkin: Dict not List by Jeremy Hylton · 20 years ago
  44. e99990f At 2.2, the Py<type>_Check() family of API functions (macros) changed by Andrew MacIntyre · 20 years ago
  45. 6f3a24d reverting 2.29: the patch was Ok, but the commit msg wrong by Andrew MacIntyre · 20 years ago
  46. 43e5711 The semantics of PyList_Check() and PyDict_Check() changed at 2.2, along by Andrew MacIntyre · 20 years ago
  47. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
  48. 930427b Add a reference to dictnotes.txt. It does no good if you don't know it's by Raymond Hettinger · 21 years ago
  49. 32b4a1b Constify char* API. Fixes #651363. 2.2 candidate. by Martin v. Löwis · 22 years ago
  50. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  51. 9b745f6 Get rid of USE_CACHE_ALIGNED. It has no function anymore. by Jack Jansen · 22 years ago
  52. f582b82 SF bug #491415 PyDict_UpdateFromSeq2() unused by Tim Peters · 23 years ago
  53. 05ac6de Add PyDict_Merge(a, b, override): by Guido van Rossum · 23 years ago
  54. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  55. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  56. 1f5871e Removed Py_PROTO and switched to ANSI C declarations in the dict by Tim Peters · 24 years ago
  57. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  58. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  59. a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 24 years ago
  60. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  61. 2ec9031 Subsumed mappingobject.h in dictobject.h. by Guido van Rossum · 27 years ago
  62. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  63. 9381782 new names for lots of new functions by Guido van Rossum · 29 years ago
  64. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 29 years ago
  65. 5799b52 Added 1995 copyright. by Guido van Rossum · 29 years ago
  66. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  67. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  68. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  69. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  70. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  71. 4b3c1da Added/moved dict2 interfaces. by Guido van Rossum · 33 years ago
  72. e24122f Export getdict2key() interface. by Guido van Rossum · 33 years ago
  73. 88671ae Added declaration for dict2insert. by Guido van Rossum · 33 years ago
  74. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  75. 6990c94 Added getdictkeys() prototype. by Guido van Rossum · 34 years ago
  76. ce4704a Remove dict2 interface -- it's now static. by Guido van Rossum · 34 years ago
  77. 85a5fbb Initial revision by Guido van Rossum · 34 years ago