1. 22 Aug, 2002 2 commits
    • Jeremy Hylton's avatar
      Cleanup implementation of string accumulation in handle_write(). · e38b0c9b
      Jeremy Hylton authored
      Boost the accumulator limit to 60000.
      Use "".join() to accumulate multiple strings, since it is not unusual
      to have more than 2 strings to join together.
      
      Add comment explaining why we do this stuff.
      e38b0c9b
    • Barry Warsaw's avatar
      Added TransactionTooLargeError which is subclassed from · b6b93862
      Barry Warsaw authored
      StorageTransactionError.  This exception is raised when a transaction
      exhausts some finite storage resource.  E.g. a transaction changing a
      huge number of objects could fill a Berkeley lock table.
      
      Also, removed some unnecessary `pass' statements, and improved
      consistency in class docstrings (first line is a complete sentence).
      b6b93862
  2. 16 Aug, 2002 10 commits
  3. 15 Aug, 2002 2 commits
    • Jeremy Hylton's avatar
      Another attempt to make testHoserStoppage work consistently. · b2a8a355
      Jeremy Hylton authored
      The order in which the tpc_finish() method of the jars is called is
      dependent on the order in which objects are returned from
      dict.values().  There is no way to write a test that works on all
      platforms that produces a consistent result in dict.values(), so stop
      trying.
      
      Instead, have the jars explicitly coordinate their tpc_finish()
      methods so that the first call always succeeds and the second call
      always fails.
      b2a8a355
    • Jeremy Hylton's avatar
      Frontport bug fixes in ConflictResolution to the trunk. · ddd1218d
      Jeremy Hylton authored
      The main idea in the bug fix is to recover more gracefully when
      something goes wrong trying to load classes for conflict resolution.
      
      XXX This accidentally got checked in on the Zope 2.5 branch first.
      ddd1218d
  4. 14 Aug, 2002 13 commits
  5. 12 Aug, 2002 6 commits
  6. 09 Aug, 2002 4 commits
  7. 08 Aug, 2002 1 commit
    • Jeremy Hylton's avatar
      Refactor test cleanup to use removefs() helper function. · 46d79eae
      Jeremy Hylton authored
      StorageTestBase.removefs() will attempt to remove files with all the
      possible extensions that FileStorage will create.  It will raise
      os.error for any error except ENOENT.
      
      Remove many variants of removefs() implemented in the various test
      suites.
      46d79eae
  8. 06 Aug, 2002 2 commits