New submission from Magnus Valle:

My script reports this problem:

"""
$ python bug.py 
  File "bug.py", line 4
SyntaxError: Non-ASCII character '\xc2' in file bug.py on line 4, but no
encoding declared; see http://www.python.org/peps/pep-0263.html for details
"""

This error looks fine and all, but the problem is that the non-ASCII
character (in this case '¤') is in a comment, not in the script itself.
If I remove it the non-ASCII character from the comment, it runs perfectly. 

I always assumed that comment didn't effect the script.

This isn't exactly a big problem, but I don't think it should be this way.

I included the demo script.

PS.
$ python -V
Python 2.5.1

----------
components: Unicode
files: bug.py
messages: 57817
nosy: wiscados
severity: minor
status: open
title: Unicode in a comment.
versions: Python 2.5
Added file: http://bugs.python.org/file8803/bug.py

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1495>
__________________________________
# Bug report recreation
a=1
print a
# If a unicode character is in a comment it won't run ¤
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to