On Apr 24, 2014 5:13 PM, "Josh Hieronymus" <[email protected]> wrote: > > if we're only concerned with supporting Python 2.7 and up, we could include the statement "from __future__ import print_function" in any file in which we use the print function
I misremembered this before, but Python 2.6 supports the import of the print function from the __future__ module as well. Earlier versions of Python, however do not. Josh
