diff options
Diffstat (limited to 'SCons/cpp.py')
-rw-r--r-- | SCons/cpp.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/SCons/cpp.py b/SCons/cpp.py index 0811c71..65358b3 100644 --- a/SCons/cpp.py +++ b/SCons/cpp.py @@ -1,5 +1,6 @@ +# MIT License # -# __COPYRIGHT__ +# Copyright The SCons Foundation # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the @@ -19,13 +20,9 @@ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +"""SCons C Pre-Processor module""" -__doc__ = """ -SCons C Pre-Processor module -""" import SCons.compat import os @@ -651,8 +648,6 @@ class DumbPreProcessor(PreProcessor): for func in ['if', 'elif', 'else', 'endif', 'ifdef', 'ifndef']: d[func] = d[func] = self.do_nothing -del __revision__ - # Local Variables: # tab-width:4 # indent-tabs-mode:nil |