From: Zac Medico Date: Mon, 7 Dec 2009 02:54:30 +0000 (-0000) Subject: Remove unused filter_phases, filter_mergephases, and filter_unmergephases X-Git-Tag: v2.1.7.11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=42f30b0a969555328117ee6c79905f590ff05b53;p=portage.git Remove unused filter_phases, filter_mergephases, and filter_unmergephases functions. (trunk r14958) svn path=/main/branches/2.1.7/; revision=14960 --- diff --git a/pym/portage/elog/filtering.py b/pym/portage/elog/filtering.py index d4d405347..d834edd3a 100644 --- a/pym/portage/elog/filtering.py +++ b/pym/portage/elog/filtering.py @@ -16,23 +16,3 @@ def filter_loglevels(logentries, loglevels): rValue[phase] = [] rValue[phase].append((msgtype, msgcontent)) return rValue - -def filter_phases(logentries, phases): - rValue1 = {} - rValue2 = {} - phases = [x.lower() for x in phases] - for phase in logentries: - if phase in phases: - rValue1[phase] = logentries[phase] - else: - rValue2[phase] = logentries[phase] - return (rValue1, rValue2) - -def filter_mergephases(logentries): - myphases = EBUILD_PHASES[:] - myphases.remove("prerm") - myphases.remove("postrm") - return filter_phases(logentries, myphases) - -def filter_unmergephases(logentries): - return filter_phases(logentries, ["prerm", "postrm", "other"])