~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/bug.py

  • Committer: Brad Crittenden
  • Date: 2011-08-04 00:59:46 UTC
  • mto: (13627.2.1 bug-813322-2)
  • mto: This revision was merged to the branch mainline in revision 13715.
  • Revision ID: bac@canonical.com-20110804005946-030kaefvuljz5j3z
Horrible checkpoint

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    'IBugDelta',
17
17
    'IBugMute',
18
18
    'IBugSet',
 
19
    'IDeferredObjectModifiedEvent',
19
20
    'IFileBugData',
20
21
    'IFrontPageBugAddForm',
21
22
    'IProjectGroupBugAddForm',
23
24
 
24
25
from lazr.enum import DBEnumeratedType
25
26
 
 
27
from lazr.lifecycle.interfaces import IObjectModifiedEvent
26
28
from lazr.lifecycle.snapshot import doNotSnapshot
27
29
from lazr.restful.declarations import (
28
30
    call_with,
1233
1235
    date_created = Datetime(
1234
1236
        title=_("The date on which the mute was created."), required=False,
1235
1237
        readonly=True)
 
1238
 
 
1239
 
 
1240
class IDeferredObjectModifiedEvent(IObjectModifiedEvent):
 
1241
    pass