diff options
author | Mats Wichmann <mats@linux.com> | 2021-06-28 19:34:08 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2021-10-04 14:12:20 (GMT) |
commit | 0e6d1a5186f034ff590965dcb2b3df63172f041a (patch) | |
tree | 529b2eac34ffe6d8e1bcc2c9f3ec2fae91e337c9 /SCons/Script | |
parent | 43fc70a9da8b082b8325f657c1a01669de265ba1 (diff) | |
download | SCons-0e6d1a5186f034ff590965dcb2b3df63172f041a.zip SCons-0e6d1a5186f034ff590965dcb2b3df63172f041a.tar.gz SCons-0e6d1a5186f034ff590965dcb2b3df63172f041a.tar.bz2 |
Change SCons.Scanner.Base to ScannerBase
Maintenance: SCons has multiple classes named Base, which is a bit
unfortunate. Some already use a context-qualified name, like BuilderBase,
which seems preferable. Do that for ScannerBase, but leave the name Base
in the SCons.Scanner package in case *external* users are depending on
SCons.Scanner.Base working. SCons internally no longer uses that name.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/Script')
-rw-r--r-- | SCons/Script/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Script/__init__.py b/SCons/Script/__init__.py index 5f58d99..40be95e 100644 --- a/SCons/Script/__init__.py +++ b/SCons/Script/__init__.py @@ -142,7 +142,7 @@ FindPathDirs = SCons.Scanner.FindPathDirs Platform = SCons.Platform.Platform Virtualenv = SCons.Platform.virtualenv.Virtualenv Return = _SConscript.Return -Scanner = SCons.Scanner.Base +Scanner = SCons.Scanner.ScannerBase Tool = SCons.Tool.Tool WhereIs = SCons.Util.WhereIs |