This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients Arfrever, eric.araujo, lemburg, pitrou, vstinner
Date 2010-08-26.20:17:20
SpamBayes Score 2.7755576e-16
Marked as misclassified No
Message-id <4C76CBCF.4090405@egenix.com>
In-reply-to <1282696356.97.0.311104799164.issue9632@psf.upfronthosting.co.za>
Content
STINNER Victor wrote:
> 
> STINNER Victor <victor.stinner@haypocalc.com> added the comment:
> 
>> Think of e.g. embedded Python interpreters or py2exe-style applications
>> running on Linux or other systems that don't use Unicode APIs 
>> for FS-interaction or have fixed FS-encodings.
> 
> What is the problem here? Python does guess the filesystem encoding. If the encoding is "wrong" (not the value expected by the user), filenames are not displayed correctly (mojibake) but it does just work. Anyway, why is it not possible to use PYTHONFSENCODING here? Are you talking to Python modules loaded from a non-ascii path?
> 
> Sorry, but I do not understand.

In such environments you cannot expect the user to configure the
system properly (i.e. set an environment variable). Instead, the
application has to provide an educated guess to the Python
interpreter in some way, hence the idea to use a configuration
file or perhaps provide a C API that can be used to set the
variable before initializing the interpreter.
History
Date User Action Args
2010-08-26 20:17:22lemburgsetrecipients: + lemburg, pitrou, vstinner, eric.araujo, Arfrever
2010-08-26 20:17:20lemburglinkissue9632 messages
2010-08-26 20:17:20lemburgcreate