1. 16 Sep, 2002 1 commit
    • Guido van Rossum's avatar
      Change the idiom: · a702ae71
      Guido van Rossum authored
          try:
              self.lock.acquire()
              ...
          finally:
              self.lock.release()
      
      into:
      
          self.lock.acquire()
          try:
              ...
          finally:
              self.lock.release()
      
      The old version would mistakenly try to release the lock if there was
      error in acquiring it.
      a702ae71
  2. 15 Sep, 2002 1 commit
    • Guido van Rossum's avatar
      Fix argument passing to the storage factory in winserver. · 207efabe
      Guido van Rossum authored
      This code used to assume that all arguments were strings.
      It was always wrong (create was passed as '0' or '1' rather
      than as 0 or 1) but this was somehow masked.  When I added
      readonly, things broke.  The solution is that winserver.py
      ha a convention that an argument starting with '=' is
      evaluated as an expression, and _startserver in testZEO's
      WindowsConnectionText uses this for the create and readonly
      args.
      207efabe
  3. 14 Sep, 2002 1 commit
  4. 13 Sep, 2002 16 commits
  5. 12 Sep, 2002 12 commits
  6. 11 Sep, 2002 9 commits