We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c140bd + edc30c3 commit f0ba04eCopy full SHA for f0ba04e
utils/line-directive
@@ -690,7 +690,8 @@ def run():
690
command_args,
691
stderr=subprocess.STDOUT,
692
stdout=subprocess.PIPE,
693
- universal_newlines=True
+ universal_newlines=True,
694
+ encoding='UTF-8'
695
)
696
697
sources = '(?P<file>' + '|'.join(re.escape(s) for s in sources) + ')'
validation-test/Python/line-directive.swift
@@ -1 +1,2 @@
1
// RUN: %{python} %utils/line-directive
2
+// RUN: %{python} %utils/line-directive -- %{python} -c "print('Hello 😄🂐')"
0 commit comments