diff options
author | Mats Wichmann <mats@linux.com> | 2019-10-20 16:13:32 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-10-20 16:13:32 (GMT) |
commit | 9c4e6c7a303047e4b26e58af749508f7e254ae89 (patch) | |
tree | 3e5f4082c151528b444f2fb1a754bc6d99858496 /src/engine/SCons/Script | |
parent | 8ec5aba156f070c89609ed8c99e7b3cc4973efa2 (diff) | |
download | SCons-9c4e6c7a303047e4b26e58af749508f7e254ae89.zip SCons-9c4e6c7a303047e4b26e58af749508f7e254ae89.tar.gz SCons-9c4e6c7a303047e4b26e58af749508f7e254ae89.tar.bz2 |
Remove deprecated {Source,Target}Signatures
These two have been deprecated since 2010 (about SCons 2.0), commit
935e6985. Methods are removed, setoption for setting them removed, doc is
removed, tests are migrated to test/Removed/*/Old with a sconstest.skip
file so they don't run, and two new tests are added to confirm that
using the functions and setoptions generate exceptions.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'src/engine/SCons/Script')
-rw-r--r-- | src/engine/SCons/Script/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/engine/SCons/Script/__init__.py b/src/engine/SCons/Script/__init__.py index 007eb0d..24af73e 100644 --- a/src/engine/SCons/Script/__init__.py +++ b/src/engine/SCons/Script/__init__.py @@ -346,10 +346,8 @@ GlobalDefaultEnvironmentFunctions = [ 'SConsignFile', 'SideEffect', 'SourceCode', - 'SourceSignatures', 'Split', 'Tag', - 'TargetSignatures', 'Value', 'VariantDir', ] |