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 vstinner
Recipients brett.cannon, christian.heimes, shidot, vstinner
Date 2009-03-20.01:30:33
SpamBayes Score 1.463159e-09
Marked as misclassified No
Message-id <1237512637.14.0.761079152996.issue4282@psf.upfronthosting.co.za>
In-reply-to
Content
Oops, i misread this issue (wrong title!). #4626 is related, but this 
issue is about the profile module. The problem is that profile open 
the source code as text (with the default charset: UTF-8).

Attached patch fixes the problem.

Example:
--- x.py (ISO-8859-1 text file) ---
#coding: ISO-8859-1
print("hé hé")
-----------------------------------

Run: python -m profile x.py

Current result:
  (...)
  File ".../py3k/Lib/profile.py", line 614, in main
    script = fp.read()
  File ".../Lib/codecs.py", line 300, in decode
    (result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf8' codec can't decode bytes (...)

With my patch, it works as expected.
History
Date User Action Args
2009-03-20 01:30:38vstinnersetrecipients: + vstinner, brett.cannon, christian.heimes, shidot
2009-03-20 01:30:37vstinnersetmessageid: <1237512637.14.0.761079152996.issue4282@psf.upfronthosting.co.za>
2009-03-20 01:30:35vstinnerlinkissue4282 messages
2009-03-20 01:30:33vstinnercreate