pycharm-pyxl
pycharm-pyxl copied to clipboard
print_function from __future__ causes parse error highlight
With a code snippet like this:
from __future__ import print_function
print("hi")
I get the following error reported by the IDE: "Statement expected, found Py:PRINT_KEYWORD"
When I disable the Pyxl plugin, PyCharm parses the file properly.
Now that pyxl is ported to python3, this issue cannot be worked around by simply not using print_function.