~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/findimports.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:
36
36
Ave, Cambridge, MA 02139, USA.
37
37
"""
38
38
 
39
 
import os
40
 
import sys
41
 
import getopt
42
39
import compiler
43
 
import linecache
44
40
from compiler import ast
45
41
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):