1. 17 Aug, 1999 4 commits
  2. 16 Aug, 1999 13 commits
  3. 13 Aug, 1999 1 commit
  4. 12 Aug, 1999 3 commits
  5. 11 Aug, 1999 11 commits
  6. 10 Aug, 1999 2 commits
  7. 09 Aug, 1999 2 commits
  8. 06 Aug, 1999 2 commits
  9. 05 Aug, 1999 2 commits
    • Jim Fulton's avatar
      *** empty log message *** · bbb32153
      Jim Fulton authored
      bbb32153
    • Jim Fulton's avatar
      I had added a check to make sure that we didn't hide programming errors · 1f04b980
      Jim Fulton authored
      when trying to get attributes during acquisition.  For example, it was
      common for acquisition to mask errors occuring when trying to load
      object state from the database, since this is typically triggered by a
      getattr call.  I wanted to do something like:
      
        try: foo.bar
        except AttributeError, v:
          if v != 'bar': raise # Bogus attribute error
          # keep looking up the acquisition tree
      
      Unfortunately, this fails because v is (sometimes) an
      instance, not a string.
      
      For now, we'll check for attribute errors, but ingore the values.
      1f04b980