diff options
author | Mats Wichmann <mats@linux.com> | 2020-05-23 13:46:18 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-24 15:27:22 (GMT) |
commit | 5b288f1b67a85bcccc533f101311b1c2c7f2b6eb (patch) | |
tree | adca21d96e435443cbc90985f53f67b85530a6c2 /testing | |
parent | 0e76754e652e974f82f975d2cf526d5f7705baab (diff) | |
download | SCons-5b288f1b67a85bcccc533f101311b1c2c7f2b6eb.zip SCons-5b288f1b67a85bcccc533f101311b1c2c7f2b6eb.tar.gz SCons-5b288f1b67a85bcccc533f101311b1c2c7f2b6eb.tar.bz2 |
classes no longer explicitly inherit from object
In Python3 this is the default.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestCmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py index 01d12cb..f980881 100644 --- a/testing/framework/TestCmd.py +++ b/testing/framework/TestCmd.py @@ -311,7 +311,7 @@ IS_WINDOWS = sys.platform == 'win32' IS_64_BIT = sys.maxsize > 2**32 IS_PYPY = hasattr(sys, 'pypy_translation_info') -class null(object): +class null: pass @@ -946,7 +946,7 @@ def _clean(): atexit.register(_clean) -class TestCmd(object): +class TestCmd: """Class TestCmd """ |