diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-21 06:50:36 +0000 |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-21 06:50:36 +0000 |
commit | 06097d4092823dfaa19e14d66b92af024c54f059 (patch) | |
tree | a0e319de586257a3c90668e845b7e21fedbd6fee /doc | |
parent | 0af7852c0892b4b084f77d9d85f7cd66c3c7dad4 (diff) | |
download | scons-06097d4092823dfaa19e14d66b92af024c54f059.tar.gz |
Convert old-style classes in miscellaneous files to new-stylre classes:
src/test_strings.py, runtest.py and doc/man/scons.1.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 9fb0df25..fd2baa36 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -4834,7 +4834,7 @@ will overwrite itself on a display: .ES import sys -class ProgressCounter: +class ProgressCounter(object): count = 0 def __call__(self, node, *args, **kw): self.count += 100 @@ -9249,7 +9249,7 @@ be associated with the instantiation of the class: .ES -class foo: +class foo(object): def __init__(self, arg): self.arg = arg |