Coverage for /pythoncovmergedfiles/medio/medio/src/underscore/underscore/future_finder.py: 88%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (c) 2013 Huan Do, http://huan.do
3import ast
5class FutureFinder(ast.NodeVisitor):
7 def __init__(self, env):
8 self.future_import_nodes = []
10 def visit_ImportFrom(self, node):
11 if node.module == '__future__':
12 self.future_import_nodes.append(node)