Main.py (scons-4.2.0) | : | Main.py (SCons-4.3.0) | ||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
Architecturally, this *is* the scons script, and will likely only be | Architecturally, this *is* the scons script, and will likely only be | |||
called from the external "scons" wrapper. Consequently, anything here | called from the external "scons" wrapper. Consequently, anything here | |||
should not be, or be considered, part of the build engine. If it's | should not be, or be considered, part of the build engine. If it's | |||
something that we expect other software to want to use, it should go in | something that we expect other software to want to use, it should go in | |||
some other module. If it's specific to the "scons" script invocation, | some other module. If it's specific to the "scons" script invocation, | |||
it goes here. | it goes here. | |||
""" | """ | |||
# these define the range of versions SCons supports | # these define the range of versions SCons supports | |||
unsupported_python_version = (3, 4, 0) | unsupported_python_version = (3, 5, 0) | |||
deprecated_python_version = (3, 5, 0) | deprecated_python_version = (3, 6, 0) | |||
import SCons.compat | import SCons.compat | |||
import atexit | import atexit | |||
import importlib.util | import importlib.util | |||
import os | import os | |||
import re | import re | |||
import sys | import sys | |||
import time | import time | |||
import traceback | import traceback | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |