summaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-15 00:00:30 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-15 00:00:30 (GMT)
commit548aa56572dce2746b944b1910f5ab5698ec675f (patch)
tree1e95675f2be06b11f698c05612529b742b0947f4 /src/engine
parent711d677a0828eb9f6516cb28bfb3cf4f4d00c17d (diff)
downloadSCons-548aa56572dce2746b944b1910f5ab5698ec675f.zip
SCons-548aa56572dce2746b944b1910f5ab5698ec675f.tar.gz
SCons-548aa56572dce2746b944b1910f5ab5698ec675f.tar.bz2
Convert old-style classes in PathList.py to new-style classes.
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/SCons/PathList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/PathList.py b/src/engine/SCons/PathList.py
index 7b12865..870c195 100644
--- a/src/engine/SCons/PathList.py
+++ b/src/engine/SCons/PathList.py
@@ -66,7 +66,7 @@ def node_conv(obj):
result = get()
return result
-class _PathList:
+class _PathList(object):
"""
An actual PathList object.
"""
@@ -141,7 +141,7 @@ class _PathList:
return tuple(result)
-class PathListCache:
+class PathListCache(object):
"""
A class to handle caching of PathList lookups.