Unicode issues

Werner F. Bruhin wrote:

I am working on moving over to Unicode. All is fine when I run the app from within Boa or from the command line invoking python.exe.

However when I run the py2exe'd version I get an encoding error on this line:
...

I don't know about your specific error, but my setup.py has the following line:

explicitIncludes = ["encodings.utf_8","encodings.latin_1","encodings.ascii"]

and then in the setup options:

setup(
     options = {"py2exe": {"includes": explicitIncludes, ....