Files
openide/python/testData/optimizeImports/commentsInsideParenthesesInCombinedFromImports.after.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

4 lines
109 B
Python

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