summaryrefslogtreecommitdiffstats
path: root/SCons/PathList.py
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-05-23 13:46:18 (GMT)
committerMats Wichmann <mats@linux.com>2020-05-24 15:27:22 (GMT)
commit5b288f1b67a85bcccc533f101311b1c2c7f2b6eb (patch)
treeadca21d96e435443cbc90985f53f67b85530a6c2 /SCons/PathList.py
parent0e76754e652e974f82f975d2cf526d5f7705baab (diff)
downloadSCons-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 'SCons/PathList.py')
-rw-r--r--SCons/PathList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/PathList.py b/SCons/PathList.py
index 76cbeab..768198b 100644
--- a/SCons/PathList.py
+++ b/SCons/PathList.py
@@ -66,7 +66,7 @@ def node_conv(obj):
result = get()
return result
-class _PathList(object):
+class _PathList:
"""
An actual PathList object.
"""
@@ -143,7 +143,7 @@ class _PathList(object):
return tuple(result)
-class PathListCache(object):
+class PathListCache:
"""
A class to handle caching of PathList lookups.