1. 02 Tem, 2004 2 kayıt (commit)
  2. 01 Tem, 2004 11 kayıt (commit)
  3. 30 Haz, 2004 4 kayıt (commit)
  4. 29 Haz, 2004 12 kayıt (commit)
  5. 28 Haz, 2004 6 kayıt (commit)
  6. 27 Haz, 2004 5 kayıt (commit)
    • Gregory P. Smith's avatar
      raise the module minor version. · 589c6abd
      Gregory P. Smith yazdı
      589c6abd
    • Gregory P. Smith's avatar
      SF patch / bug #967763 · dc5af706
      Gregory P. Smith yazdı
      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 yazdı
      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
    • Gregory P. Smith's avatar
      Fix SF bug # 897820 - we can no longer use the DB_TRUNCATE flag when · a6b3caad
      Gregory P. Smith yazdı
      opening the DB to implement legacy interface flag='n' support as
      BerkeleyDB 4.2.52 no longer allows it in transaction protected
      environments.  Do the os.unlink ourselves.
      a6b3caad
    • Tim Peters's avatar
      sizeof(char) is 1, by definition, so get rid of that expression in · e7c05323
      Tim Peters yazdı
      places it's just noise.
      e7c05323