~lazr-developers/lazr.lifecycle/trunk

« back to all changes in this revision

Viewing changes to src/lazr/lifecycle/event.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-03-25 02:08:40 UTC
  • mfrom: (32.1.2 lazr.lifecycle)
  • Revision ID: launchpad@pqm.canonical.com-20090325020840-lwt2o502hl533ip6
[r=flacoste] specify v3 of LGPL;
        update to newer lazr buildout patterns;
        add ZPL for zc.buildout bootstrap code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#
5
5
# lazr.lifecycle is free software: you can redistribute it and/or modify it
6
6
# under the terms of the GNU Lesser General Public License as published by
7
 
# the Free Software Foundation, either version 3 of the License, or (at your
8
 
# option) any later version.
 
7
# the Free Software Foundation, version 3 of the License.
9
8
#
10
9
# lazr.lifecycle is distributed in the hope that it will be useful, but WITHOUT
11
10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
86
85
        super(ObjectModifiedEvent, self).__init__(object, user=user)
87
86
        self.object_before_modification = object_before_modification
88
87
        self.edited_fields = edited_fields
89