summaryrefslogtreecommitdiffstats
path: root/SCons/Subst.py
diff options
context:
space:
mode:
Diffstat (limited to 'SCons/Subst.py')
-rw-r--r--SCons/Subst.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/SCons/Subst.py b/SCons/Subst.py
index f23b2d0..4d732c3 100644
--- a/SCons/Subst.py
+++ b/SCons/Subst.py
@@ -217,10 +217,6 @@ class Targets_or_Sources(collections.UserList):
def __getitem__(self, i):
nl = self.nl._create_nodelist()
return nl[i]
- def __getslice__(self, i, j):
- nl = self.nl._create_nodelist()
- i = max(i, 0); j = max(j, 0)
- return nl[i:j]
def __str__(self):
nl = self.nl._create_nodelist()
return str(nl)