1. 12 Jul, 2004 4 commits
    • Vinay Sajip's avatar
      Removed debugging print statements from TimedRotatingFileHandler, and sorted... · 5e9e9e19
      Vinay Sajip authored
      Removed debugging print statements from TimedRotatingFileHandler, and sorted list returned by glob.glob() (SF #987166)
      5e9e9e19
    • Anthony Baxter's avatar
      another note for amk · 1869df11
      Anthony Baxter authored
      1869df11
    • Tim Peters's avatar
    • Tim Peters's avatar
      Bug #788520: Queue class has logic error when non-blocking · 5af0e414
      Tim Peters authored
      I don't agree it had a bug (see the report), so this is *not* a candidate
      for backporting, but the docs were confusing and the Queue implementation
      was old enough to vote.
      
      Rewrote put/put_nowait/get/get_nowait from scratch, to use a pair of
      Conditions (not_full and not_empty), sharing a common mutex.  The code
      is 1/4 the size now, and 6.25x easier to understand.  For blocking
      with timeout, we also get to reuse (indirectly) the tedious timeout
      code from threading.Condition.  The Full and Empty exceptions raised
      by non-blocking calls are now easy (instead of nearly impossible) to
      explain truthfully:  Full is raised if and only if the Queue truly
      is full when the non-blocking put call checks the queue size, and
      similarly for Empty versus non-blocking get.
      
      What I don't know is whether the new implementation is slower (or
      faster) than the old one.  I don't really care.  Anyone who cares
      a lot is encouraged to check that.
      5af0e414
  2. 11 Jul, 2004 10 commits
  3. 10 Jul, 2004 26 commits