Message103565
| Author |
vstinner |
| Recipients |
amaury.forgeotdarc, vstinner |
| Date |
2010年04月19日.09:09:33 |
| SpamBayes Score |
3.1713494e-08 |
| Marked as misclassified |
No |
| Message-id |
<1271668174.33.0.876473729722.issue8393@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
> It does not work on Windows
I always consider Windows as a special case because Windows uses unicode internally. Byte string are converted quickly to unicode using the current locale.
My patch was for UNIX/BSD which uses byte string internally.
sp_CreateProcess() in PC/_subprocess.c uses CreateProcessW. To support byte string, we should use the byte string version of CreateProcess ("CreateProcessA" ?) or convert current directory to unicode (using the current locale). The second solution minimize the changes. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年04月19日 09:09:34 | vstinner | set | recipients:
+ vstinner, amaury.forgeotdarc |
| 2010年04月19日 09:09:34 | vstinner | set | messageid: <1271668174.33.0.876473729722.issue8393@psf.upfronthosting.co.za> |
| 2010年04月19日 09:09:33 | vstinner | link | issue8393 messages |
| 2010年04月19日 09:09:33 | vstinner | create |
|