I am creating several Python demo scripts that should work under 2.6, 2.7, and 3.3.
As part of this, each module has a prefix
from __future__ import unicode_literals
Is it possible to issue this directive from each of the modules and paste it into the general import file?
eg.
# master.py from __future__ import unicode_literals # file1.py import master # file2.py import master
python
bluedog
source share