diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-20 21:46:03 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-20 21:46:03 (GMT) |
commit | b040d94fad9024d5715d22cdc071384e827696b2 (patch) | |
tree | 88d776de309ce5153a38b7b5ce9da7f5f2c5a436 /bench/dependency-func.py | |
parent | 9d48a11283587d8780636fc042c5247d40b531c0 (diff) | |
download | SCons-b040d94fad9024d5715d22cdc071384e827696b2.zip SCons-b040d94fad9024d5715d22cdc071384e827696b2.tar.gz SCons-b040d94fad9024d5715d22cdc071384e827696b2.tar.bz2 |
Convert old-style classes in bench/* scripts to new-style classes.
Diffstat (limited to 'bench/dependency-func.py')
-rw-r--r-- | bench/dependency-func.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/dependency-func.py b/bench/dependency-func.py index 7313cf9..09c6162 100644 --- a/bench/dependency-func.py +++ b/bench/dependency-func.py @@ -71,7 +71,7 @@ def Func02(t): # {'keyword' : 'arguments'}, # ), -class A: +class A(object): pass Data = [ |