summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-06-11 15:03:33 (GMT)
committerMats Wichmann <mats@linux.com>2020-06-11 15:03:33 (GMT)
commit8fb5f22e1675d7cb330e4e56ff2a662c193bdc15 (patch)
tree89b39cf93d665ae85c4c35646c9708ef16d22e6d
parent07ba4716ef08158da819ec98b4533d06c84c12dc (diff)
downloadSCons-8fb5f22e1675d7cb330e4e56ff2a662c193bdc15.zip
SCons-8fb5f22e1675d7cb330e4e56ff2a662c193bdc15.tar.gz
SCons-8fb5f22e1675d7cb330e4e56ff2a662c193bdc15.tar.bz2
Minor: drop engine prefix from docstrings [ci skip]
A number of module docstrings start with the module name, these end up appearing in API docs. Drop the "engine/" prefix where it appears. Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r--SCons/Platform/aix.py2
-rw-r--r--SCons/Platform/darwin.py2
-rw-r--r--SCons/Platform/hpux.py2
-rw-r--r--SCons/Platform/sunos.py2
-rw-r--r--SCons/Tool/aixf77.py2
-rw-r--r--SCons/Tool/cvf.py2
-rw-r--r--SCons/Tool/f03.py2
-rw-r--r--SCons/Tool/f08.py2
-rw-r--r--SCons/Tool/f77.py2
-rw-r--r--SCons/Tool/f90.py2
-rw-r--r--SCons/Tool/f95.py2
-rw-r--r--SCons/Tool/g77.py2
-rw-r--r--SCons/Tool/icc.py2
-rw-r--r--SCons/Tool/icl.py2
-rw-r--r--SCons/Tool/mssdk.py2
-rw-r--r--SCons/Tool/msvc.py2
-rw-r--r--SCons/Tool/sunar.py2
-rw-r--r--SCons/Variables/BoolVariable.py2
-rw-r--r--SCons/Variables/EnumVariable.py2
-rw-r--r--SCons/Variables/ListVariable.py2
-rw-r--r--SCons/Variables/PackageVariable.py2
-rw-r--r--SCons/Variables/__init__.py2
22 files changed, 22 insertions, 22 deletions
diff --git a/SCons/Platform/aix.py b/SCons/Platform/aix.py
index 0266dc6..c91679f 100644
--- a/SCons/Platform/aix.py
+++ b/SCons/Platform/aix.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Platform.aix
+"""SCons.Platform.aix
Platform-specific initialization for IBM AIX systems.
diff --git a/SCons/Platform/darwin.py b/SCons/Platform/darwin.py
index fd697f6..590e79a 100644
--- a/SCons/Platform/darwin.py
+++ b/SCons/Platform/darwin.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Platform.darwin
+"""SCons.Platform.darwin
Platform-specific initialization for Mac OS X systems.
diff --git a/SCons/Platform/hpux.py b/SCons/Platform/hpux.py
index 0e0bbcf..701be8a 100644
--- a/SCons/Platform/hpux.py
+++ b/SCons/Platform/hpux.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Platform.hpux
+"""SCons.Platform.hpux
Platform-specific initialization for HP-UX systems.
diff --git a/SCons/Platform/sunos.py b/SCons/Platform/sunos.py
index 057fddf..40e698e 100644
--- a/SCons/Platform/sunos.py
+++ b/SCons/Platform/sunos.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Platform.sunos
+"""SCons.Platform.sunos
Platform-specific initialization for Sun systems.
diff --git a/SCons/Tool/aixf77.py b/SCons/Tool/aixf77.py
index 3e30cd0..4cef908 100644
--- a/SCons/Tool/aixf77.py
+++ b/SCons/Tool/aixf77.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.aixf77
+"""SCons.Tool.aixf77
Tool-specific initialization for IBM Visual Age f77 Fortran compiler.
diff --git a/SCons/Tool/cvf.py b/SCons/Tool/cvf.py
index da2c910..47e733e 100644
--- a/SCons/Tool/cvf.py
+++ b/SCons/Tool/cvf.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.cvf
+"""SCons.Tool.cvf
Tool-specific initialization for the Compaq Visual Fortran compiler.
diff --git a/SCons/Tool/f03.py b/SCons/Tool/f03.py
index 6c30971..85774ca 100644
--- a/SCons/Tool/f03.py
+++ b/SCons/Tool/f03.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.f03
+"""SCons.Tool.f03
Tool-specific initialization for the generic Posix f03 Fortran compiler.
diff --git a/SCons/Tool/f08.py b/SCons/Tool/f08.py
index 64bac8e..2939dc5 100644
--- a/SCons/Tool/f08.py
+++ b/SCons/Tool/f08.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.f08
+"""SCons.Tool.f08
Tool-specific initialization for the generic Posix f08 Fortran compiler.
diff --git a/SCons/Tool/f77.py b/SCons/Tool/f77.py
index af47024..0fd58e5 100644
--- a/SCons/Tool/f77.py
+++ b/SCons/Tool/f77.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.f77
+"""SCons.Tool.f77
Tool-specific initialization for the generic Posix f77 Fortran compiler.
diff --git a/SCons/Tool/f90.py b/SCons/Tool/f90.py
index 16b8f84..2dfb6f1 100644
--- a/SCons/Tool/f90.py
+++ b/SCons/Tool/f90.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.f90
+"""SCons.Tool.f90
Tool-specific initialization for the generic Posix f90 Fortran compiler.
diff --git a/SCons/Tool/f95.py b/SCons/Tool/f95.py
index 5baa31e..5b99e53 100644
--- a/SCons/Tool/f95.py
+++ b/SCons/Tool/f95.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.f95
+"""SCons.Tool.f95
Tool-specific initialization for the generic Posix f95 Fortran compiler.
diff --git a/SCons/Tool/g77.py b/SCons/Tool/g77.py
index 9dc3ba5..764235e 100644
--- a/SCons/Tool/g77.py
+++ b/SCons/Tool/g77.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.g77
+"""SCons.Tool.g77
Tool-specific initialization for g77.
diff --git a/SCons/Tool/icc.py b/SCons/Tool/icc.py
index 11ea075..adf24e9 100644
--- a/SCons/Tool/icc.py
+++ b/SCons/Tool/icc.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.icc
+"""SCons.Tool.icc
Tool-specific initialization for the OS/2 icc compiler.
diff --git a/SCons/Tool/icl.py b/SCons/Tool/icl.py
index a0bad31..421a388 100644
--- a/SCons/Tool/icl.py
+++ b/SCons/Tool/icl.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.icl
+"""SCons.Tool.icl
Tool-specific initialization for the Intel C/C++ compiler.
diff --git a/SCons/Tool/mssdk.py b/SCons/Tool/mssdk.py
index f373002..b94f105 100644
--- a/SCons/Tool/mssdk.py
+++ b/SCons/Tool/mssdk.py
@@ -23,7 +23,7 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-"""engine.SCons.Tool.mssdk
+"""SCons.Tool.mssdk
Tool-specific initialization for Microsoft SDKs, both Platform
SDKs and Windows SDKs.
diff --git a/SCons/Tool/msvc.py b/SCons/Tool/msvc.py
index 463e372..b9eb60a 100644
--- a/SCons/Tool/msvc.py
+++ b/SCons/Tool/msvc.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.msvc
+"""SCons.Tool.msvc
Tool-specific initialization for Microsoft Visual C/C++.
diff --git a/SCons/Tool/sunar.py b/SCons/Tool/sunar.py
index ec076c8..266e914 100644
--- a/SCons/Tool/sunar.py
+++ b/SCons/Tool/sunar.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Tool.sunar
+"""SCons.Tool.sunar
Tool-specific initialization for Solaris (Forte) ar (library archive). If CC
exists, static libraries should be built with it, so that template
diff --git a/SCons/Variables/BoolVariable.py b/SCons/Variables/BoolVariable.py
index ce46eda..9c66cde 100644
--- a/SCons/Variables/BoolVariable.py
+++ b/SCons/Variables/BoolVariable.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Variables.BoolVariable
+"""SCons.Variables.BoolVariable
This file defines the option type for SCons implementing true/false values.
diff --git a/SCons/Variables/EnumVariable.py b/SCons/Variables/EnumVariable.py
index bb0a9a0..8053503 100644
--- a/SCons/Variables/EnumVariable.py
+++ b/SCons/Variables/EnumVariable.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Variables.EnumVariable
+"""SCons.Variables.EnumVariable
This file defines the option type for SCons allowing only specified
input-values.
diff --git a/SCons/Variables/ListVariable.py b/SCons/Variables/ListVariable.py
index 351ffb1..7ebbb23 100644
--- a/SCons/Variables/ListVariable.py
+++ b/SCons/Variables/ListVariable.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Variables.ListVariable
+"""SCons.Variables.ListVariable
This file defines the option type for SCons implementing 'lists'.
diff --git a/SCons/Variables/PackageVariable.py b/SCons/Variables/PackageVariable.py
index a0ace25..6847f3d 100644
--- a/SCons/Variables/PackageVariable.py
+++ b/SCons/Variables/PackageVariable.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Variables.PackageVariable
+"""SCons.Variables.PackageVariable
This file defines the option type for SCons implementing 'package
activation'.
diff --git a/SCons/Variables/__init__.py b/SCons/Variables/__init__.py
index ce9335b..f7531b4 100644
--- a/SCons/Variables/__init__.py
+++ b/SCons/Variables/__init__.py
@@ -1,4 +1,4 @@
-"""engine.SCons.Variables
+"""SCons.Variables
This file defines the Variables class that is used to add user-friendly
customizable variables to an SCons build.