Files
openide/python/testData/optimizeImports/commentsInsideParenthesesInCombinedFromImports.py
Mikhail Golubev b882f53851 PY-23035 PY-23086 Handle comments in "from" imports better in optimize imports
by joining their text via "; " the same way isort deals with them
2017-03-17 14:44:29 +03:00

7 lines
160 B
Python

from datetime import (timedelta as name, # bcc
time as bbb) # cbc
from datetime import (datetime as ccc) # abc
print(name, bbb, ccc)