Porting to python3

Asked by Schwarzburg

Hi,

I'm currently in the process of porting an app developed with quickly to python3. I intend to follow these [1] suggestions, starting by including "from __future__ import absolute_import, print_function, unicode_literals" in all python files.

This mainly means that I will have to ignore many "DO NOT TOUCH THIS" and "DO NOT EDIT THIS FILE". My guess is that this will create a lot of work once quickly itself will support switches to python3.

So my question is: do you have a plan, a suggestion, how I can make the transition as painless as possible, so that the future quickly updates and my own updates do not collide too much?

[1] https://wiki.ubuntu.com/Python/3

Question information

Language:
English Edit question
Status:
Solved
For:
Quickly Edit question
Assignee:
No assignee Edit question
Solved by:
Michael Terry
Solved:
Last query:
Last reply:
Revision history for this message
Best Michael Terry (mterry) said :
#1

Not especially. But I imagine once Quickly supports Python3 projects, there will only be so many ways to do it. And its changes and yours won't conflict much.

Revision history for this message
Schwarzburg (stefan-schwarzburg) said :
#2

Thanks Michael Terry, that solved my question.