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 tarek
Recipients sjmachin, tarek
Date 2008-12-30.10:42:21
SpamBayes Score 0.0001282053
Marked as misclassified No
Message-id <1230633743.74.0.253805126411.issue4742@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a status:

The problem is located in the codec that decodes the data (called by the
compile builtin).

It throws an error :

*** UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in
position 853: character maps to <undefined>

Which is caught by compile and translated into:

SyntaxError: unknown encoding: cp1252

So I see two problems:

1/ why compile throws such an error when there's an UnicodeDecodeError
2/ why compile works well under Py2 since 0x9d is not part of the 
   cp1252 mapping

I have written a test that reproduces the problem, and I am still
investigating. If I can't find the problem I will ask for help on
python-dev because I have no knowledge in the compiler internals yet.
History
Date User Action Args
2008-12-30 10:42:24tareksetrecipients: + tarek, sjmachin
2008-12-30 10:42:23tareksetmessageid: <1230633743.74.0.253805126411.issue4742@psf.upfronthosting.co.za>
2008-12-30 10:42:22tareklinkissue4742 messages
2008-12-30 10:42:21tarekcreate