1. 05 Jan, 2004 1 commit
    • Jeremy Hylton's avatar
      Use runzeo.py instead. · c85876be
      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.
      c85876be
  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. · 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
  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