[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are also problems with FCICreate, but this is a different issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread miss-islington
miss-islington added the comment: New changeset 0ef6a3fc0eb9337656ef843bbcde09c15267173d by Miss Islington (bot) in branch '3.9': bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126) https://github.com/python/cpython/commit/0ef6a3fc0eb9337656ef843bbcde09c15267173d

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread miss-islington
miss-islington added the comment: New changeset 3f4de44cf7f3da754efbbc0e70feabf3b9384dce by Miss Islington (bot) in branch '3.8': bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126) https://github.com/python/cpython/commit/3f4de44cf7f3da754efbbc0e70feabf3b9384dce

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +20295 pull_request: https://github.com/python/cpython/pull/21134 ___ Python tracker ___

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +20294 pull_request: https://github.com/python/cpython/pull/21133 ___ Python tracker

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 55939b1708d6fc0d36d2be11ccdc6bf207e1bd41 by Serhiy Storchaka in branch 'master': bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126) https://github.com/python/cpython/commit/55939b1708d6fc0d36d2be11ccdc6bf207e1bd41

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-24 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20289 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21126 ___ Python tracker

[issue41074] msilib does not work correctly with non-ASCII names

2020-06-22 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : It encodes input string arguments with utf-8 and pass encoded strings to 8-bit API which expect they be encoded using the locale encoding. It may pass tests, create and read files, but these files will just have wrong names. -- components: