mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
It's safer when PyBlock.IMPORT_GROUP_BEGIN marker is inserted for new imports in single place (via methods of AddImportHelper). As an additional benefit of this approach, moved __from__ import statement is inserted in alphabetical order.
12 lines
173 B
Python
12 lines
173 B
Python
"""This is a docstring."""
|
|
|
|
from __future__ import print_function
|
|
#comment
|
|
from __future__ import absolute_import
|
|
from __future__ import with_statement
|
|
|
|
|
|
class A:
|
|
pass
|
|
|