Commit b0ed60f9 authored by Stefan Behnel's avatar Stefan Behnel

do not check identifiers for decodability

parent ae21e6c1
...@@ -903,7 +903,7 @@ class StringNode(PyConstNode): ...@@ -903,7 +903,7 @@ class StringNode(PyConstNode):
# A Python str object, i.e. a byte string in Python 2.x and a # A Python str object, i.e. a byte string in Python 2.x and a
# unicode string in Python 3.x # unicode string in Python 3.x
# #
# value BytesLiteral # value BytesLiteral or EncodedString
# is_identifier boolean # is_identifier boolean
type = Builtin.str_type type = Builtin.str_type
...@@ -919,6 +919,7 @@ class StringNode(PyConstNode): ...@@ -919,6 +919,7 @@ class StringNode(PyConstNode):
self.check_for_coercion_error(dst_type, fail=True) self.check_for_coercion_error(dst_type, fail=True)
# this will be a unicode string in Py3, so make sure we can decode it # this will be a unicode string in Py3, so make sure we can decode it
if not self.is_identifier:
encoding = self.value.encoding or 'UTF-8' encoding = self.value.encoding or 'UTF-8'
try: try:
self.value.decode(encoding) self.value.decode(encoding)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment