tptimer/env/lib/python2.7/site-packages/pylint/test/functional/misplaced_future.py

7 lines
217 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
"""Test that __future__ is not the first statement after the docstring."""
import collections
from __future__ import print_function # [misplaced-future]
from __future__ import with_statement
DATA = collections