Files
openide/python/testData/inspections/MoveFromFutureImport.py
2010-03-24 20:48:15 +03:00

9 lines
242 B
Python

from __future__ import print_function
#comment
from __future__ import absolute_import
class A:
pass
<warning descr="from __future__ imports must occur at the beginning of the file"><caret>from __future__ import with_statement</warning>