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 emile.anclin
Recipients emile.anclin
Date 2010-11-30.09:35:46
SpamBayes Score 1.0466388e-07
Marked as misclassified No
Message-id <1291109752.1.0.382539471745.issue10588@psf.upfronthosting.co.za>
In-reply-to
Content
Considering following file: 
$ cat pylint/test/input/func_unknown_encoding.py 
# -*- coding: IBO-8859-1 -*-
""" check correct unknown encoding declaration
"""

__revision__ = 'éééé'
$

When we try to find that module, imp.find_module raises SyntaxError:

>>> from imp import find_module
>>> find_module('func_unknown_encoding', None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SyntaxError: encoding problem: with BOM

It should be considered as a bug, as stated by  Brett Cannon:

> Considering these semantics changed between Python 2 and 3 w/o a
> discernable benefit (I would consider it a negative as finding a
> module should not be impacted by syntactic correctness; the full act
> of importing should be the only thing that cares about that), I would
> consider it a bug that should be filed.
History
Date User Action Args
2010-11-30 09:35:52emile.anclinsetrecipients: + emile.anclin
2010-11-30 09:35:52emile.anclinsetmessageid: <1291109752.1.0.382539471745.issue10588@psf.upfronthosting.co.za>
2010-11-30 09:35:46emile.anclinlinkissue10588 messages
2010-11-30 09:35:46emile.anclincreate