Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / pylint / test / functional / misplaced_future.py @ 745

History | View | Annotate | Download (217 Bytes)

1
"""Test that __future__ is not the first statement after the docstring."""
2
import collections
3
from __future__ import print_function # [misplaced-future]
4
from __future__ import with_statement
5

    
6
DATA = collections