summaryrefslogtreecommitdiff
path: root/pylint/test/functional/misplaced_future.py
blob: b4317d96f46a71f016ea6e176eeb681cf7f52e61 (plain)
1
2
3
4
5
6
"""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