python-by-example-150-chall.../venv/lib/python3.6/site-packages/pylint/test/functional/misplaced_future.py
2019-08-04 15:26:35 +03:00

7 lines
217 B
Python

"""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