1. 14 Jul, 2006 2 commits
  2. 15 Jun, 2006 2 commits
  3. 26 May, 2006 1 commit
  4. 22 Mar, 2006 1 commit
  5. 11 Feb, 2006 2 commits
  6. 14 Dec, 2005 1 commit
  7. 10 Dec, 2005 1 commit
  8. 04 Dec, 2005 1 commit
  9. 22 Nov, 2005 1 commit
    • Thomas Lotze's avatar
      merging revision 40330 from trunk: · 68e2af9b
      Thomas Lotze authored
      - fixed the API of the pop() method on PersistentDict and PersistentMapping
      - no longer try to find pop and popitem on UserDict as all supported
        Python versions have them
      - added a test for the default argument of pop()
      - added a NEWS.txt entry about pop()
      68e2af9b
  10. 21 Nov, 2005 1 commit
  11. 21 Oct, 2005 1 commit
  12. 12 Oct, 2005 2 commits
  13. 05 Oct, 2005 3 commits
  14. 04 Oct, 2005 3 commits
  15. 03 Oct, 2005 2 commits
  16. 25 Sep, 2005 1 commit
  17. 06 Sep, 2005 2 commits
  18. 26 Aug, 2005 1 commit
    • Tim Peters's avatar
      Merge rev 38114 from trunk. · 72795b10
      Tim Peters authored
      Collector 1873.
      
      update_from_seq():  If PySequence_Check(seq) returns true,
      go on to check for the existence of "iteritems" when deciding
      whether the input is or is not "a sequence".  Alas,
      PySequence_Check() does return true for PersistentMapping and
      PersistentDict instances, so that they couldn't be used as
      arguments to BTree/Bucket construction or update().
      
      This is nasty type-sniffing, but it was before too.  There's
      no way to make such stuff bulletproof, so I'm settling for
      incremental improvement.
      72795b10
  19. 25 Aug, 2005 1 commit
  20. 24 Aug, 2005 1 commit
  21. 23 Aug, 2005 1 commit
  22. 12 Aug, 2005 1 commit
  23. 09 Aug, 2005 1 commit
  24. 08 Aug, 2005 3 commits
  25. 07 Aug, 2005 2 commits
  26. 04 Aug, 2005 2 commits
    • Tim Peters's avatar
      An internal 3.4.1b3 release. · fc43960e
      Tim Peters authored
      fc43960e
    • Tim Peters's avatar
      Plug leaks in the ZEO client cache. · 27464d77
      Tim Peters authored
      ClientCache._evicted():  When deleting the last range of
      non-current tids for an oid, remove the list from the
      noncurrent dict instead of leaving an empty list sitting
      there forever.  This also required adjusting the side-
      effect dance in ClientCache._remove_noncurrent_revisions().
      
      FileCache._makeroom():  This was the major leak -- it
      neglected to remove an evicted object's Entry from the
      key2entry dict.
      27464d77