~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/launchpad/interfaces/distribution.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-17 20:41:13 UTC
  • mfrom: (3277.1.4 launchpad-foobar2)
  • Revision ID: pqm@pqm.ubuntu.com-20060317204113-9841a4470db3611b
[r=jamesh] Mainline soyuz

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
__all__ = [
8
8
    'IDistribution',
9
9
    'IDistributionSet',
10
 
    'IDistroPackageFinder',
11
10
    ]
12
11
 
13
12
from zope.schema import Choice, Int, TextLine, Bool
255
254
            members, owner):
256
255
        """Creaste a new distribution."""
257
256
 
258
 
 
259
 
class IDistroPackageFinder(Interface):
260
 
    """A tool to find packages in a distribution."""
261