py/unicode: Fix check for valid utf8 being stricter about contn chars.
This commit is contained in:
@@ -47,3 +47,7 @@ try:
|
||||
str(bytearray(b'ab\xc0a'), 'utf8')
|
||||
except UnicodeError:
|
||||
print('UnicodeError')
|
||||
try:
|
||||
str(b'\xf0\xe0\xed\xe8', 'utf8')
|
||||
except UnicodeError:
|
||||
print('UnicodeError')
|
||||
|
||||
Reference in New Issue
Block a user