diff options
author | 2021-04-08 15:04:22 -0700 | |
---|---|---|
committer | 2021-04-08 15:04:22 -0700 | |
commit | 4b3a2265a17f9bb6d55ee10e3e0e86b67f75c7cb (patch) | |
tree | 3df6941de7dd075c1a44c2a84d1f6242f8ad60fd | |
parent | Note new return case in eval api file (diff) |
Clarify documentation of None return code
-rw-r--r-- | snekbox/api/resources/eval.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/api/resources/eval.py b/snekbox/api/resources/eval.py index 40275ea..d96b811 100644 --- a/snekbox/api/resources/eval.py +++ b/snekbox/api/resources/eval.py @@ -41,7 +41,7 @@ class EvalResource: The return codes mostly resemble those of a Unix shell. Some noteworthy cases: - None - The NsJail process failed to launch or return valid unicode output + The NsJail process failed to launch or the output was invalid Unicode - 137 (SIGKILL) Typically because NsJail killed the Python process due to time or memory constraints - 255 |