Message74027
About os.getcwd(), another solution is merge_os_getcwd_getcwdu.patch:
os.getcwd() always return unicode string and raise an error on unicode
decode error. Wheras os.getcwd(bytes=True) always return bytes.
The old function os.getcwdu() is removed since os.getcwd() already
return unicode string.
Note: current version of os.getcwd() uses the wrong encoding to
conversion bytes to unicode: it uses PyUnicode_FromString() instead of
PyUnicode_Decode(..., Py_FileSystemDefaultEncoding, "strict") (as does
getcwdu()). |
|
Date |
User |
Action |
Args |
2008-09-29 12:51:57 | vstinner | set | recipients:
+ vstinner, gvanrossum, loewis, amaury.forgeotdarc, pitrou, benjamin.peterson, HWJ, dlitz, zegreek |
2008-09-29 12:51:57 | vstinner | set | messageid: <1222692717.35.0.599304244398.issue3187@psf.upfronthosting.co.za> |
2008-09-29 12:51:32 | vstinner | link | issue3187 messages |
2008-09-29 12:51:32 | vstinner | create | |
|