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

3 lines
116 B
Python

from sys import path, version # contains items from PYTHONPATH; the version in form of string
print(path, version)