~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/tcpwatch/tcpwatch.py

  • Committer: William Grant
  • Date: 2012-01-01 03:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031025-pcl0na3sbgfrztcw
utilities

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
    'TCPWatch %s Copyright 2001 Shane Hathaway, Zope Corporation'
79
79
    % VERSION)
80
80
 
81
 
import sys
 
81
import asyncore
 
82
import getopt
82
83
import os
83
84
import socket
84
 
import asyncore
85
 
import getopt
86
 
from time import time, localtime
 
85
import sys
 
86
from time import (
 
87
    localtime,
 
88
    time,
 
89
    )
87
90
 
88
91
 
89
92
RECV_BUFFER_SIZE = 8192