1. 06 Jan, 2004 7 commits
  2. 05 Jan, 2004 8 commits
  3. 02 Jan, 2004 15 commits
  4. 01 Jan, 2004 1 commit
  5. 31 Dec, 2003 4 commits
    • Jeremy Hylton's avatar
      Fix bug that prevented ZEO from working with Python 2.4. · c8dc49bd
      Jeremy Hylton authored
      Connection initialized _map as a dict containing a single entry
      mapping the connection's fileno to the connection.  That was a misuse
      of the _map variable, which is also used by the asyncore.dispatcher
      base class to indicate whether the dispatcher users the default
      socket_map or a custom socket_map.  A recent change to asyncore caused
      it to use _map in its add_channel() and del_channel() methods, which
      presumes to be a bug fix (may get ported to 2.3).  That causes our
      dubious use of _map to be a problem, because we also put the
      Connections in the global socket_map.  The new asyncore won't remove
      it from the global socket map, because it has a custom _map.
      
      Also change a bunch of 0/1s to False/Trues.
      c8dc49bd
    • Fred Drake's avatar
      move more of the handling of log cycling into zLOG, allowing · 133884f0
      Fred Drake authored
      applications to know less about how this is implemented
      133884f0
    • Fred Drake's avatar
      remove unused import · 1a6e7b92
      Fred Drake authored
      1a6e7b92
    • Jeremy Hylton's avatar
      Split assert into two parts, checking for None in second part. · a8e99d0d
      Jeremy Hylton authored
      The comment indicated that end could be None, and I've fleshed out the
      comment with more detail.
      a8e99d0d
  6. 30 Dec, 2003 5 commits