Would it be correct to say that if 'print' is not listed as one of the methods in

__future__.__dict__.keys() 

then the version of Python that I am using does not supply the future print function? (I am using Python 2.5.5.)

link|improve this question

Why do you need to know? – dan04 Dec 28 '10 at 8:23
I want to make my 2.5.5 code effortlessly portable when Google App Engine supports a newer version of Python. That's why. – broiyan Dec 28 '10 at 8:27
2to3 is too much effort for you? – dan04 Dec 28 '10 at 8:37
Boring equals effort. – broiyan Dec 28 '10 at 14:15
feedback

3 Answers

up vote 1 down vote accepted

Right, but that would be print_function, and that was introduced in Python 2.6.

link|improve this answer
feedback

Almost correct. The feature is called print_function, not print.

Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41) 
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import __future__
>>> __future__.print_function
_Feature((2, 6, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 65536)
link|improve this answer
feedback

Yes. That is correct. But a better way to do that check would be:

try: from future import print_function except ImportError: print "print is a stmt"

You cannot do the above way of importing and checking for print_function. The ways available seems, checking with sys.version and checking the __future__ dictionary as you are doing.

link|improve this answer
SyntaxError: from __future__ imports must occur at the beginning of the file – dan04 Dec 28 '10 at 8:28
feedback

Your Answer

 
or
required, but never shown

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