File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 6868)
6969
7070print (f"Submission status: { result .status } " )
71- print (f"Producer stdout: { result .stdout } " )
72- print (f'User stdout:\n { result .post_execution_filesystem .find ("user.stdout" )} ' )
71+ print ()
72+
73+ print (f"Producer stdin:\n { result .stdin } " )
74+ print (f"Producer stdout:\n { result .stdout } " )
75+ print (f"Producer stderr:\n { result .stderr } " )
76+ print ()
77+
7378print (f'User stdin:\n { result .post_execution_filesystem .find ("user.stdin" )} ' )
79+ print (f'User stdout:\n { result .post_execution_filesystem .find ("user.stdout" )} ' )
80+ print (f'User stderr:\n { result .post_execution_filesystem .find ("user.stderr" )} ' )
Original file line number Diff line number Diff line change @@ -56,3 +56,6 @@ class Status(IntEnum):
5656 RUNTIME_ERROR_OTHER = 12
5757 INTERNAL_ERROR = 13
5858 EXEC_FORMAT_ERROR = 14
59+
60+ def __str__ (self ):
61+ return self .name .lower ().replace ("_" , " " ).title ()
You can’t perform that action at this time.
0 commit comments