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 vinay.sajip
Recipients alexis, eric.araujo, tarek, vinay.sajip
Date 2011-10-13.17:25:37
SpamBayes Score 2.0000777e-09
Marked as misclassified No
Message-id <1318526738.12.0.999393107487.issue13151@psf.upfronthosting.co.za>
In-reply-to
Content
> I don’t have Windows yet, so either we wait or we iterate I make a patch - you report failures - I make a patch etc.

Actually I'm finding these failures on Ubuntu :-)

Although there are MBCS encoding issues which will also need to be fixed before you can build a pure-Python .exe installer on Linux (which is possible with distutils, so should work in packaging too), these failures occur before you get to that point. That last part can be fixed on Linux by doing (in bdist_wininst.create_exe):

try:
    cfgdata = cfgdata.encode("mbcs")
except LookupError:
    cfgdata = cfgdata.encode("latin-1")

which is at least better than what we have now.
History
Date User Action Args
2011-10-13 17:25:38vinay.sajipsetrecipients: + vinay.sajip, tarek, eric.araujo, alexis
2011-10-13 17:25:38vinay.sajipsetmessageid: <1318526738.12.0.999393107487.issue13151@psf.upfronthosting.co.za>
2011-10-13 17:25:37vinay.sajiplinkissue13151 messages
2011-10-13 17:25:37vinay.sajipcreate