~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/findimports.py

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
Ave, Cambridge, MA 02139, USA.
37
37
"""
38
38
 
 
39
import os
 
40
import sys
 
41
import getopt
39
42
import compiler
 
43
import linecache
40
44
from compiler import ast
41
45
from compiler.visitor import ASTVisitor
42
 
import getopt
43
 
import linecache
44
 
import os
45
 
import sys
46
46
 
47
47
 
48
48
class ImportFinder(ASTVisitor):