From: stevenknight Date: Thu, 10 Feb 2005 14:38:09 +0000 (+0000) Subject: Don't memoize the get_build_scanner_path() methods. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=5ec18cab01d5cceab70ef68a37e96aa6ef76b46c;p=scons.git Don't memoize the get_build_scanner_path() methods. git-svn-id: http://scons.tigris.org/svn/scons/trunk@1225 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Executor.py b/src/engine/SCons/Executor.py index 7965afea..013a1258 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 f1150c4f..c7167a39 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):