~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/database/enumcol.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
__metaclass__ = type
5
5
 
6
 
from lazr.enum import (
7
 
    DBEnumeratedType,
8
 
    DBItem,
9
 
    )
10
6
from storm import sqlobject
11
7
from storm.properties import SimpleProperty
12
8
from storm.variables import Variable
 
9
 
13
10
from zope.security.proxy import isinstance as zope_isinstance
14
 
 
 
11
from lazr.enum import DBEnumeratedType, DBItem
15
12
 
16
13
__all__ = [
17
14
'DBEnum',