Which python version needs from __future__ import with_statement?

Viewed 12754

Using python 2.6.5, I can use the with statement without calling from __future__ import with_statement. How can I tell which version of Python supports with without specifically importing it from __future__?

3 Answers
Related