From 6dda49592e511332d6893881c3091e6fcd25f42f Mon Sep 17 00:00:00 2001 From: LiYang Date: Sat, 11 Jul 2020 19:23:17 +0800 Subject: [PATCH] Update languages.py --- judge/languages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/judge/languages.py b/judge/languages.py index 021bcb4..8c590e5 100644 --- a/judge/languages.py +++ b/judge/languages.py @@ -160,7 +160,7 @@ _py3_lang_config = { //APPEND END""", "compile": { "src_name": "solution.py", - "exe_name": "__pycache__/solution.cpython-35.pyc", + "exe_name": "__pycache__/solution.cpython-36.pyc", "max_cpu_time": 3000, "max_real_time": 10000, "max_memory": 128 * 1024 * 1024, @@ -207,6 +207,6 @@ languages = [ "name": "C++", "description": "G++ 5.4", "content_type": "text/x-c++src"}, {"config": _java_lang_config, "name": "Java", "description": "OpenJDK 1.8", "content_type": "text/x-java"}, {"config": _py2_lang_config, "name": "Python2", "description": "Python 2.7", "content_type": "text/x-python"}, - {"config": _py3_lang_config, "name": "Python3", "description": "Python 3.5", "content_type": "text/x-python"}, + {"config": _py3_lang_config, "name": "Python3", "description": "Python 3.6", "content_type": "text/x-python"}, {"config": _go_lang_config, "name": "Golang", "description": "Golang 1.14", "content_type": "text/x-go"}, ]