Skip to content

Commit 70c92ca

Browse files
committed
Use less exotic unicode chars
The characters used before were in the private-use section had surrogate chars. This led to issues with some python utf8 decoder implementations resulting in the error ``` UnicodeEncodeError: 'utf-8' codec can't encode characters in position 13-20: surrogates not allowed ``` This uses more normal utf8 characters that should hopefully work everywhere while still exhibiting issues decoding to ascii.
1 parent edc30c3 commit 70c92ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// RUN: %{python} %utils/line-directive
2-
// RUN: %{python} %utils/line-directive -- %{python} -c "print('Hello 😄🂐')"
2+
// RUN: %{python} %utils/line-directive -- %{python} -c "print('你好')"

0 commit comments

Comments
 (0)