diff options
author | William Deegan <bill@baddogconsulting.com> | 2021-05-06 22:25:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 22:25:21 (GMT) |
commit | 6ea0fd425435ef05a707f7d4c7d9047161fcc3c6 (patch) | |
tree | d8c9731e1ee8b32897777aa2cb56c203bbc59f27 /SCons/Node/Python.py | |
parent | 17c1574436cf6599e9d085fae1d501f4624df3ea (diff) | |
parent | 690b51aee3f62bdf8f55b7da2f35d93729c981a3 (diff) | |
download | SCons-6ea0fd425435ef05a707f7d4c7d9047161fcc3c6.zip SCons-6ea0fd425435ef05a707f7d4c7d9047161fcc3c6.tar.gz SCons-6ea0fd425435ef05a707f7d4c7d9047161fcc3c6.tar.bz2 |
Merge pull request #3944 from mwichmann/python
Drop overridden `changed_since_last_build` method in Value class
Diffstat (limited to 'SCons/Node/Python.py')
-rw-r--r-- | SCons/Node/Python.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/SCons/Node/Python.py b/SCons/Node/Python.py index 738682c..c6850ab 100644 --- a/SCons/Node/Python.py +++ b/SCons/Node/Python.py @@ -146,13 +146,6 @@ class Value(SCons.Node.Node): """Get contents for signature calculations.""" return self.get_text_contents().encode() - def changed_since_last_build(self, target, prev_ni): - cur_csig = self.get_csig() - try: - return cur_csig != prev_ni.csig - except AttributeError: - return True - def get_csig(self, calc=None): """Because we're a Python value node and don't have a real timestamp, we get to ignore the calculator and just use the |