Is python 3 support planned at all?
I was having a problem with paths exceeding max path length on Windows, and this is apparently fixed in python 3.6 (I worked around the problem by moving the suite directory closer to drive root)
I'm not a python expert, but I've seen applications supporting both python 2 and 3 before by using import __future__. Would that be a possible migration path?
Is python 3 support planned at all?
I was having a problem with paths exceeding max path length on Windows, and this is apparently fixed in python 3.6 (I worked around the problem by moving the suite directory closer to drive root)
I'm not a python expert, but I've seen applications supporting both python 2 and 3 before by using
import __future__. Would that be a possible migration path?