run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of
PyUnicode_AsUTF8String()
diff --git a/Modules/main.c b/Modules/main.c
index 0c38fac..7df883c 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -280,14 +280,14 @@
     if (filename) {
         unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
         if (unicode != NULL) {
-            bytes = PyUnicode_AsUTF8String(unicode);
+            bytes = PyUnicode_EncodeFSDefault(unicode);
             Py_DECREF(unicode);
         }
         if (bytes != NULL)
             filename_str = PyBytes_AsString(bytes);
         else {
             PyErr_Clear();
-            filename_str = "<decoding error>";
+            filename_str = "<encoding error>";
         }
     }
     else