Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since Django doesn't yet support Python 3.x, I'm using Python 2.7. However, I'd like to go ahead and start familiarizing myself with the new Python 3.x syntax as much as possible. Which leads me to the question:

  • What is the best way to write Python 2.7 code that will be as compatible as possible with Python 3.x?

I know that running python -3 will

Warn about Python 3.x incompatibilities that 2to3 cannot trivially fix.

However, I'm interested in getting used to Python 3.x syntax while still using Python 2.7.

For instance, it seems that I should be using the following imports to my code:

from __future__ import print_function
from __future__ import unicode_literals
from __future__ import division
from __future__ import absolute_import

The above four __future__ import statements are required as of Python 3.0, but not required in 2.7 as described in Python 2.7.3's documentation 27.11. Future Statement Definitions

What else?

share|improve this question
1  
One downside of this approach is if your program has dependencies on packages incompatible with one the __future __ utility, your program will fail and you don't have much control. For example you use one of simple pypi package and it has "print something". Thanks anyways it's good question. – Shekhar May 19 '11 at 8:40
6  
@Shekhar: the effect of __future__ is localized to a module that imports it. There is no problem with a print statement; only modules that have from __future__ import print_function at the top can use the print() function. – J.F. Sebastian Dec 10 '11 at 22:10

6 Answers

Many modules these days get rewritten in a way that allows execution on both Python 2 and Python 3. This turns out to be not very hard at all, and in the future it will be very easy to just drop Python 2 support.

Take a look at the six module that helps with this task, encapsulating many of the differences in a convenient way:

Six provides simple utilities for wrapping over differences between Python 2 and Python 3.

Its website (and of course, code) lists a lot of ways to make this possible.

share|improve this answer

You also need to use the new exception syntaxes, ie no more

try:
     raise Exception, "Message"
except Exception, e:
     pass

instead you should do:

try:
     raise Exception("Message")
except Exception as e:
     pass

Also make sure you prefix all your binary strings with a b, ie:

b'This is a binary string'

For a more complete cover of this topic, see http://python3porting.com/noconv.html

share|improve this answer
One of the main annoyances is the absence of the u'string' syntax in 3. For my money, a terrible decision. – Marcin Jan 5 at 22:41
@Marcin: It's back in 3.3. – Lennart Regebro Jan 6 at 0:04
Good news. Makes my point, though. – Marcin Jan 6 at 0:08
try:
    input = raw_input
    range = xrange
except NameError:
    pass

Are two ones that spring to mind...

share|improve this answer
At least a comment why the downvote? – Jakob Bowyer May 9 '11 at 14:15

Avoing range() and zip(), using xrange() and itertools.izip() instead.

share|improve this answer
3  
The problem with using xrange is that it's missing in Python 3, so the same code has no chance to run there. If one is willing to give up the possible performance benefits of xrange, it's better to use range instead, making code more python 2 and 3 compatible – Eli Bendersky May 9 '11 at 13:11
@Eli Why not do (like my example) a try except to make range = xrange? – Jakob Bowyer May 9 '11 at 13:14
2  
@Eli: But by using xrange etc you can then trivially run 2to3 on the code, while otherwise you might do things like zip(foo)[2], which won't work since the result in Python 3 is not a list. – Lennart Regebro May 9 '11 at 15:19
@Lennart: agreed about 2to3. It all really depends on the approach one takes to implement the transition. – Eli Bendersky May 9 '11 at 15:25

I just install both 2.7 and 3.2. If i need power of python 3 in python 2 i just build 2 scripts in both python versions, which comunicate via http or sockets.

share|improve this answer
4  
I don't think OP is trying to make modules written for different python versions to inter-operate, but rather to make sure his/her own modules will be easy/easier to port from 2 to 3. – André Caron May 9 '11 at 16:22
1  
My motivation stems from wanting to become accustomed to some of the Python 3 syntactic differences even though I can't use Python 3 yet. – Matthew Rankin May 11 '11 at 11:45

Many Python IDE's can be of big help here.

PyCharm, for example, can be configured to check for compatibility with any range of versions,

enter image description here

and report issues at any level of severity:

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.