def __init__()

in zktraffic/cli/printer.py [0:0]


  def __init__(self, colors, loopback, output=sys.stdout):
    super(BasePrinter, self).__init__()
    self.write = self.colored_write if colors else self.simple_write
    self.loopback = loopback
    self._output = output
    self.setDaemon(True)
    self._seen_requests = 0
    self._seen_replies = 0
    self._seen_events = 0
    self._wants_stopped = False
    self._stopped = True