1. 05 Jan, 2004 1 commit
    • Jeremy Hylton's avatar
      Use runzeo.py instead. · fe645271
      Jeremy Hylton authored
      This old script was provided in 3.2 only to ease transition.  Removed
      now, because it depends on zdaemon.Daemon, which no longer exists.
      fe645271
  2. 02 Jan, 2004 15 commits
  3. 01 Jan, 2004 1 commit
  4. 31 Dec, 2003 4 commits
    • Jeremy Hylton's avatar
      Fix bug that prevented ZEO from working with Python 2.4. · a3a5bcec
      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.
      a3a5bcec
    • Fred Drake's avatar
      move more of the handling of log cycling into zLOG, allowing · f6917993
      Fred Drake authored
      applications to know less about how this is implemented
      f6917993
    • Fred Drake's avatar
      remove unused import · e395816d
      Fred Drake authored
      e395816d
    • Jeremy Hylton's avatar
      Split assert into two parts, checking for None in second part. · 5fbc3529
      Jeremy Hylton authored
      The comment indicated that end could be None, and I've fleshed out the
      comment with more detail.
      5fbc3529
  5. 30 Dec, 2003 5 commits
  6. 29 Dec, 2003 9 commits
  7. 27 Dec, 2003 1 commit
  8. 26 Dec, 2003 3 commits
  9. 25 Dec, 2003 1 commit