cannot open file with non-ASCII filename

Terry Reedy tjreedy at udel.edu
Mon Dec 14 13:34:56 EST 2015


On 12/14/2015 11:24 AM, Ulli Horlacher wrote:
> With Python 2.7.11 on Windows 7 my users cannot open/read files with
> non-ASCII filenames.

Right.  They should either restrict themselves to ascii (or possibly 
latin-1) filenames or use current 3.x.  This is one of the (known) 
unicode problems fixed in 3.x by making unicode the core text class, 
replacing the implementation of unicode, and performing further work 
with the new implementation.

-- 
Terry Jan Reedy




More information about the Python-list mailing list