diff options
author | Mats Wichmann <mats@linux.com> | 2019-08-16 14:19:20 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2022-03-15 14:39:44 (GMT) |
commit | ff81eebb73825091051e5ee846d0d89c60798112 (patch) | |
tree | bb02c3ff5d48f0322c0b5fbf2c14b1c7ae2f6908 /SCons/SConsign.py | |
parent | 57369e87ba560f941e645e9d2ed194bd4a26dad5 (diff) | |
download | SCons-ff81eebb73825091051e5ee846d0d89c60798112.zip SCons-ff81eebb73825091051e5ee846d0d89c60798112.tar.gz SCons-ff81eebb73825091051e5ee846d0d89c60798112.tar.bz2 |
Use super call instead of direct class call
- super used where direct call to superclass existed
- convert a few older-style super() (two-argument) uses
- in a few places, where there was an intersection with a super change,
variables that override a builtin (e.g. "dict") were renamed.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/SConsign.py')
-rw-r--r-- | SCons/SConsign.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SCons/SConsign.py b/SCons/SConsign.py index 5b78855..ecca391 100644 --- a/SCons/SConsign.py +++ b/SCons/SConsign.py @@ -248,7 +248,7 @@ class DB(Base): determined by the database module. """ def __init__(self, dir): - Base.__init__(self) + super().__init__() self.dir = dir @@ -319,7 +319,7 @@ class Dir(Base): """ fp - file pointer to read entries from """ - Base.__init__(self) + super().__init__() if not fp: return @@ -352,7 +352,7 @@ class DirFile(Dir): fp = None try: - Dir.__init__(self, fp, dir) + super().__init__(fp, dir) except KeyboardInterrupt: raise except Exception: |