@@ -74,7 +74,7 @@ The `gcc` compiler is mandatory,
74
74
and ` fpc ` (Free Pascal) and java compilers are required
75
75
if there are invocations of those languages.
76
76
77
- Python (2 or 3) is an essential dependency for executing the TPS scripts.
77
+ Python is an essential dependency for executing the TPS scripts.
78
78
It is also needed for invocations of Python solutions.
79
79
You can set the environment variable ` PYTHON ` to ` python3 ` , ` python2 ` , ` python ` ,
80
80
or any other Python interpreter with which you want to run the solution.
@@ -242,7 +242,7 @@ gencode magic 2000
242
242
This directory contains the program that have the main routine,
243
243
which will be compiled with a solution or contestant's source code
244
244
and call its functions.
245
- It contains one directory for each programming language (cpp/pas/java),
245
+ It contains one directory for each programming language (cpp/pas/java/py ),
246
246
which contains a specific grader for that language.
247
247
The ` cpp ` directory usually contains a ` .h ` interface file
248
248
that is included in grader
@@ -252,7 +252,8 @@ The public grader,
252
252
which is given to the contestants during the contest,
253
253
can be the same as this graders,
254
254
or can be automatically created from the grader by removing the secret parts,
255
- which are bounded between ` // BEGIN SECRET ` and ` // END SECRET ` lines,
255
+ which are bounded between ` // BEGIN SECRET ` and ` // END SECRET ` lines
256
+ (` # BEGIN SECRET ` and ` # END SECRET ` in case of python language),
256
257
or can be prepared separately.
257
258
258
259
## checker/
@@ -473,9 +474,9 @@ public cpp/PROBLEM_NAME_PLACE_HOLDER.cpp
473
474
grader cpp/PROBLEM_NAME_PLACE_HOLDER.h
474
475
grader cpp/grader.cpp
475
476
476
- public pas/compile_pas .sh
477
- public pas /PROBLEM_NAME_PLACE_HOLDER.pas
478
- grader pas /grader.pas
477
+ public py/compile_py .sh
478
+ public py /PROBLEM_NAME_PLACE_HOLDER.py
479
+ grader py /grader.py
479
480
480
481
public java/compile_java.sh
481
482
public java/run_java.sh
0 commit comments