diff options
-rw-r--r-- | src/engine/SCons/cpp.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/SCons/cpp.py b/src/engine/SCons/cpp.py index 6ca5f9a..8c75287 100644 --- a/src/engine/SCons/cpp.py +++ b/src/engine/SCons/cpp.py @@ -27,6 +27,11 @@ __doc__ = """ SCons C Pre-Processor module """ +# TODO(1.5): remove this import +# This module doesn't use anything from SCons by name, but we import SCons +# here to pull in zip() from the SCons.compat layer for early Pythons. +import SCons + import os import re import string |