~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/lazr/interfaces/__init__.py

  • Committer: William Grant
  • Date: 2011-12-30 08:00:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230080022-aaydwp3x7gkxga2i
Explicit c.l.i imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
 
 
4
 
# pylint: disable-msg=W0401
5
 
"""Lazr interfaces."""
6
 
 
7
 
__metaclass__ = type
8
 
 
9
 
from canonical.lazr.interfaces.objectprivacy import *
10
 
 
11