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

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