1. 01 May, 2003 9 commits
  2. 30 Apr, 2003 2 commits
  3. 29 Apr, 2003 2 commits
  4. 25 Apr, 2003 1 commit
  5. 24 Apr, 2003 3 commits
  6. 23 Apr, 2003 5 commits
  7. 22 Apr, 2003 8 commits
  8. 21 Apr, 2003 2 commits
  9. 17 Apr, 2003 1 commit
  10. 16 Apr, 2003 1 commit
  11. 11 Apr, 2003 3 commits
  12. 10 Apr, 2003 1 commit
  13. 09 Apr, 2003 2 commits
    • Jeremy Hylton's avatar
      Speed up connection establishment. · a77ae75b
      Jeremy Hylton authored
      Don't know what happened, but the tests started running very slowly
      with Python2.3.  Fixed by checking _ready at the start of the loop in
      _wait() instead of at the bottom.  Most of the time _ready is set by
      the time we start, and no more I/O is going to occur until the client
      connects; as a result, the tests always sat in pending() until it
      timed out at 30 seconds.
      a77ae75b
    • Jeremy Hylton's avatar
      Don't continue with notifyConnected() if the storage is closed. · 5d56a255
      Jeremy Hylton authored
      There's a race between closing the storage and shutting down the
      ConnectThread.  If we return here, the ConnectThread does no harm.
      5d56a255