Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
08a0bbc8
Commit
08a0bbc8
authored
Jun 16, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't mask encoding errors when decoding a string #6289
parent
a1cc0408
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
Lib/test/test_coding.py
Lib/test/test_coding.py
+12
-0
Misc/NEWS
Misc/NEWS
+2
-0
Parser/tokenizer.c
Parser/tokenizer.c
+1
-4
No files found.
Lib/test/test_coding.py
View file @
08a0bbc8
...
...
@@ -21,6 +21,18 @@ class CodingTest(unittest.TestCase):
fp
.
close
()
self
.
assertRaises
(
SyntaxError
,
compile
,
text
,
filename
,
'exec'
)
def
test_error_from_string
(
self
):
# See http://bugs.python.org/issue6289
input
=
u"# coding: ascii
\
n
\
N{SNOWMAN}
"
.
encode
(
'utf-8'
)
try
:
compile
(
input
,
"<string>"
,
"exec"
)
except
SyntaxError
as
e
:
expected
=
"'ascii' codec can't decode byte 0xe2 in position 16: "
\
"ordinal not in range(128)"
self
.
assertTrue
(
str
(
e
).
startswith
(
expected
))
else
:
self
.
fail
(
"didn't raise"
)
def
test_main
():
test
.
test_support
.
run_unittest
(
CodingTest
)
...
...
Misc/NEWS
View file @
08a0bbc8
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #6289: Encoding errors from compile() were being masked.
- When no module is given in a relative import, the module field of the
ImportFrom AST node is now None instead of an empty string.
...
...
Parser/tokenizer.c
View file @
08a0bbc8
...
...
@@ -619,11 +619,8 @@ decode_str(const char *str, struct tok_state *tok)
if
(
tok
->
enc
!=
NULL
)
{
assert
(
utf8
==
NULL
);
utf8
=
translate_into_utf8
(
str
,
tok
->
enc
);
if
(
utf8
==
NULL
)
{
PyErr_Format
(
PyExc_SyntaxError
,
"unknown encoding: %s"
,
tok
->
enc
);
if
(
utf8
==
NULL
)
return
error_ret
(
tok
);
}
str
=
PyString_AsString
(
utf8
);
}
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment