You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While converting the Python 2 scripts to Python 3 today I noticed that all of the compile_all.py scripts are very similar. However, a few of them have slightly different formatting. In each compile_all.py the code checks to see if the action value is equal to measure. In the following files this code is indented an extra level:
The effect of this is that in the files in this list check to see if the Makefile file exists and then later check to see if the action is measure. The files that are not in this list check if the action is measure whether or not the Makefile exists.
When action is equal to measure the compile_all.py script sleeps for 5 seconds. I have not looked into how this affects the outcome but the scripts should probably be consistent even if there's no effect on the end results. I'm assuming that the check should only happen when Makefile exists.
The text was updated successfully, but these errors were encountered:
While converting the Python 2 scripts to Python 3 today I noticed that all of the
compile_all.py
scripts are very similar. However, a few of them have slightly different formatting. In eachcompile_all.py
the code checks to see if theaction
value is equal tomeasure
. In the following files this code is indented an extra level:The effect of this is that in the files in this list check to see if the
Makefile
file exists and then later check to see if the action ismeasure
. The files that are not in this list check if the action ismeasure
whether or not theMakefile
exists.When action is equal to
measure
thecompile_all.py
script sleeps for 5 seconds. I have not looked into how this affects the outcome but the scripts should probably be consistent even if there's no effect on the end results. I'm assuming that the check should only happen whenMakefile
exists.The text was updated successfully, but these errors were encountered: