Ezio Melotti <ezio.melo...@gmail.com> added the comment:

On Python 3, os.walk() uses the surrogateescape error handler.  If the filename 
is in e.g. iso-8859-* and the filesystem encoding is UTF-8, decoding '\xe5' 
will then result in '\udce5', and '\udce5' can't then be printed because it's a 
lone surrogate.

See also 
http://docs.python.org/dev/library/os.html#file-names-command-line-arguments-and-environment-variables

----------
resolution:  -> invalid
stage:  -> committed/rejected
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13717>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to