Merge lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface into lp:launchpad

Proposed by Gavin Panella
Status: Merged
Approved by: Gavin Panella
Approved revision: no longer in the source branch.
Merged at revision: 13556
Proposed branch: lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface
Merge into: lp:launchpad
Diff against target: 22 lines (+5/-1)
1 file modified
lib/lp/registry/interfaces/distroseriesdifference.py (+5/-1)
To merge this branch: bzr merge lp:~allenap/launchpad/localpackagediffs-filter-by-person-or-team-bug-798873-interface
Reviewer Review Type Date Requested Status
Gavin Panella (community) Approve
Review via email: mp+69776@code.launchpad.net

Commit message

[r=allenap][bug=798873] Add changed_by to the interface declaration of getForDistroSeries().

Description of the change

I forgot to update getForDistroSeries in the interface when adding the changed_by parameter.

To post a comment you must log in.
Revision history for this message
Gavin Panella (allenap) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/registry/interfaces/distroseriesdifference.py'
2--- lib/lp/registry/interfaces/distroseriesdifference.py 2011-07-27 08:13:18 +0000
3+++ lib/lp/registry/interfaces/distroseriesdifference.py 2011-07-29 12:43:55 +0000
4@@ -297,7 +297,8 @@
5 status=None,
6 child_version_higher=False,
7 parent_series=None,
8- packagesets=None):
9+ packagesets=None,
10+ changed_by=None):
11 """Return differences for the derived distro series sorted by
12 package name.
13
14@@ -321,6 +322,9 @@
15 parent series if this parameter is None.
16 :type distro_series: `IDistroSeries`.
17 :param packagesets: Optional iterable of `Packageset` to filter by.
18+ :param changed_by: An optional `Person` (an individual or a team) or a
19+ collection of `Person`s. The results are limited to only those
20+ changes made by the given people.
21 :return: A result set of `IDistroSeriesDifference`.
22 """
23