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.
1 parent ab15414 commit 4dfad11Copy full SHA for 4dfad11
mathics/docpipeline.py
@@ -88,14 +88,13 @@ def fail(why):
88
f"""{sep}Test failed: {section} in {part} / {chapter}
89
{part}
90
n{why}
91
-"""
92
- )
+""".encode("utf-8"))
93
return False
94
95
if not quiet:
96
if section:
97
- print(f"{stars} {tests.chapter} / {section} {stars}")
98
- print(f"{index:4d} ({subindex:2d}): TEST {test}")
+ print(f"{stars} {tests.chapter} / {section} {stars}".encode("utf-8"))
+ print(f"{index:4d} ({subindex:2d}): TEST {test}".encode("utf-8"))
99
100
feeder = MathicsSingleLineFeeder(test, "<test>")
101
evaluation = Evaluation(definitions, catch_interrupt=False, output=TestOutput())
0 commit comments