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 StupidHod
Recipients StupidHod
Date 2014-07-21.00:49:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405903755.61.0.322854383415.issue22019@psf.upfronthosting.co.za>
In-reply-to
Content
When ntpath.join() works with a path that with Chinese character ,a unicode Decode error will happen.
detailes as:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb2 in position 0: ordinal not in range(128)

As the interparter said,it happened at
result_path = result_path + p_path line 84.

as I modif this expression with "result_path = str(result_path) + str(p_path)",it works well.
History
Date User Action Args
2014-07-21 00:49:15StupidHodsetrecipients: + StupidHod
2014-07-21 00:49:15StupidHodsetmessageid: <1405903755.61.0.322854383415.issue22019@psf.upfronthosting.co.za>
2014-07-21 00:49:15StupidHodlinkissue22019 messages
2014-07-21 00:49:15StupidHodcreate