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 pitrou
Recipients pitrou, vstinner
Date 2008-08-28.13:49:49
SpamBayes Score 1.0461044e-06
Marked as misclassified No
Message-id <1219931399.48b6ad079e876@imp.free.fr>
In-reply-to <1219924081.1.0.27725271232.issue3616@psf.upfronthosting.co.za>
Content
Selon STINNER Victor <report@bugs.python.org>:
>
> Python 2.5 has the same problem (at least, on Linux). rmtree(<unicode
> directory name>) fails if the directory contains invalid unicode
> string. Backtrace:

Well, I'm not sure we should call it the same problem, although the roots are
the same. The difference is that in 2.x, using bytes strings for file and
directory names is quite normal, especially under Linux where they are just
bytes at the OS level. In 3.0 though, those strings are supposed to be unicode
at the Python level, which makes the problem much more critical.
History
Date User Action Args
2008-08-28 13:55:17pitrousetrecipients: + pitrou, vstinner
2008-08-28 13:49:50pitroulinkissue3616 messages
2008-08-28 13:49:49pitroucreate