SIGN IN SIGN UP

Issue #9425: fix setup_context() for non-ascii filenames

setup_context() replaces .pyc or .pyo filename suffix by .py, but it
didn't work if the filename contains a non-ascii character because the
function used the wrong unit for the length (number of characters
instead of the number of bytes).

With this patch, it uses unicode filenames instead of bytes filenames,
to fix the bug and to be fully unicode compliant.
V
Victor Stinner committed
2e5f1178ac55c032982c69f4f4dd70c19f9fa46e
Parent: eb6f3ea