1. 02 Jul, 2004 4 commits
  2. 01 Jul, 2004 11 commits
  3. 30 Jun, 2004 4 commits
  4. 29 Jun, 2004 12 commits
  5. 28 Jun, 2004 6 commits
  6. 27 Jun, 2004 3 commits
    • Gregory P. Smith's avatar
      raise the module minor version. · 589c6abd
      Gregory P. Smith authored
      589c6abd
    • Gregory P. Smith's avatar
      SF patch / bug #967763 · dc5af706
      Gregory P. Smith authored
      Fix memory leaks revealed by valgrind and ensuing code inspection.
      
      In the existing test suite valgrind revealed two memory leaks (DB_get
      and DBC_set_range).  Code inspection revealed that there were many other
      potential similar leaks (many on odd code error paths such as passing
      something other than a DBTxn object for a txn= parameter or in the face
      of an out of memory error).  The most common case that would cause a
      leak was when using recno or queue format databases with integer keys,
      sometimes only with an exception exit.
      dc5af706
    • Brett Cannon's avatar
      Add code for a range function that uses generators. · c2b151c6
      Brett Cannon authored
      Cleaned up existing code by abstracting code to parse arguments.  Also removed
      any unneeded operations (such as calling 'int' on a division when using floor
      division also works).  Fixed a bug where the values  returned by
      OldStyleRange could be short by one value.  Added more documentation.
      
      Testing code also has a basic sanity check.
      c2b151c6