[issue3542] Building an MSI installer crashes

2008-08-16 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue3542] Building an MSI installer crashes

2008-08-16 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Thanks for the report. This is now fixed in r65709. The right approach is to use the MS "wide string" API whereever possible, e.g. invoke MsiSummarySetPropertyInfoW (instead of MsiSummarySetPropertyInfo, as that defaults to MsiSummarySetProp

[issue3542] Building an MSI installer crashes

2008-08-11 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- assignee: -> loewis ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3542] Building an MSI installer crashes

2008-08-11 Thread Antoine Pitrou
New submission from Antoine Pitrou <[EMAIL PROTECTED]>: msilib hasn't been updated for py3k, consequently bdist_msi fails. The provided patch fixes it, but encoding issues are not worked out (in my tests, selecting an utf-8 codepage produces unrecognized msi files). -- components: Librar