svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r70157 | hirokazu.yamamoto | 2009-03-04 10:52:10 +0900 | 1 line
Issue #5273: Fixed import failure on unicode path. (especially on windows)
........
{
PyObject *oldname, *newname;
- if (!PyUnicode_CompareWithASCIIString(co->co_filename, pathname))
- return 0;
-
- newname = PyUnicode_FromString(pathname);
+ newname = PyUnicode_DecodeFSDefault(pathname);
if (newname == NULL)
return -1;
+ if (!PyUnicode_Compare(co->co_filename, newname)) {
+ Py_DECREF(newname);
+ return 0;
+ }
+
oldname = co->co_filename;
Py_INCREF(oldname);
update_code_filenames(co, oldname, newname);