summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-02-10 14:38:09 (GMT)
committerSteven Knight <knight@baldmt.com>2005-02-10 14:38:09 (GMT)
commit13706a906d814697ecfd819fc915ff0d97bf7388 (patch)
tree6c7c0f84dbe41f05adb752f620dcd4d93b38b7ec /src
parent0278c902ea8713e407073dbbfaf0067eb0c6ab3b (diff)
downloadSCons-13706a906d814697ecfd819fc915ff0d97bf7388.zip
SCons-13706a906d814697ecfd819fc915ff0d97bf7388.tar.gz
SCons-13706a906d814697ecfd819fc915ff0d97bf7388.tar.bz2
Don't memoize the get_build_scanner_path() methods.
Diffstat (limited to 'src')
-rw-r--r--src/engine/SCons/Executor.py4
-rw-r--r--src/engine/SCons/Node/__init__.py3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/engine/SCons/Executor.py b/src/engine/SCons/Executor.py
index 7965afe..013a125 100644
--- a/src/engine/SCons/Executor.py
+++ b/src/engine/SCons/Executor.py
@@ -78,8 +78,8 @@ class Executor:
return build_env
def get_build_scanner_path(self, scanner):
- """
- __cacheable__
+ """Fetch the scanner path for this executor's targets
+ and sources.
"""
env = self.get_build_env()
try:
diff --git a/src/engine/SCons/Node/__init__.py b/src/engine/SCons/Node/__init__.py
index f1150c4..c7167a3 100644
--- a/src/engine/SCons/Node/__init__.py
+++ b/src/engine/SCons/Node/__init__.py
@@ -150,8 +150,7 @@ class Node:
return self.get_executor().get_build_env()
def get_build_scanner_path(self, scanner):
- """Fetch the appropriate Environment to build this node.
- __cacheable__"""
+ """Fetch the appropriate scanner path for this node."""
return self.get_executor().get_build_scanner_path(scanner)
def set_executor(self, executor):