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 thatch
Recipients dotz, ggenellina, thatch
Date 2009-10-28.22:33:56
SpamBayes Score 2.0770394e-06
Marked as misclassified No
Message-id <1256769239.25.0.17819317721.issue6906@psf.upfronthosting.co.za>
In-reply-to
Content
I'm running the exact same version as Gabriel (on Windows 7, 32 bit)
from the python.org installer, and have the same behavior as Michał. 
Checking FixTk.py it appears that on Vista and above, it calls the Win32
API GetFinalPathNameByHandleW to expand symbolic links, but this is a -W
function, not a -A so it deals with unicode.

The blame shows this function was added in response to #3881

For my system, the paths are all lower ascii so changing the end of
convert_path to return str(s) works.  I don't know anything about
filesystem encodings on Windows to do a more correct conversion.
History
Date User Action Args
2009-10-28 22:33:59thatchsetrecipients: + thatch, ggenellina, dotz
2009-10-28 22:33:59thatchsetmessageid: <1256769239.25.0.17819317721.issue6906@psf.upfronthosting.co.za>
2009-10-28 22:33:57thatchlinkissue6906 messages
2009-10-28 22:33:56thatchcreate