summaryrefslogtreecommitdiffstats
path: root/pym/portage_util.py
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-12-27 05:49:42 +0000
committerBrian Harring <ferringb@gentoo.org>2005-12-27 05:49:42 +0000
commit86626add17a903b488234ebf3b1783237994f068 (patch)
tree0a002fa3a836cacb74bae3c795c05625c5966172 /pym/portage_util.py
parent8ea33e32e3be2f0460eaaf9724fc069be081df6a (diff)
downloadportage-86626add17a903b488234ebf3b1783237994f068.tar.gz
portage-86626add17a903b488234ebf3b1783237994f068.tar.bz2
portage-86626add17a903b488234ebf3b1783237994f068.zip
bye bye crap grab_multiple function.
list comp just as easily handles it. svn path=/main/trunk/; revision=2486
Diffstat (limited to 'pym/portage_util.py')
-rw-r--r--pym/portage_util.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pym/portage_util.py b/pym/portage_util.py
index d11cede5c..062190c70 100644
--- a/pym/portage_util.py
+++ b/pym/portage_util.py
@@ -119,12 +119,6 @@ def stack_lists(lists, incremental=1):
new_list.append(y[:])
return new_list
-def grab_multiple(basename, locations, handler, all_must_exist=0):
- mylist = []
- for x in locations:
- mylist.append(handler(x+"/"+basename))
- return mylist
-
def grabdict(myfilename,juststrings=0,empty=0,recursive=0):
"""This function grabs the lines in a file, normalizes whitespace and returns lines in a dictionary"""
newdict={}