[Checkins] SVN: zope.lifecycleevent/trunk/ Remove old module declarations from classes. They were intended to go

Christian Theune ct at gocept.com
Wed Jan 28 09:24:51 EST 2009


Log message for revision 95320:
  Remove old module declarations from classes. They were intended to go
  away anyway, they're gonna cause test breakage but not code breakage and
  nothing happened in over two years. For me they cause irritations in the
  import analyzer.
  

Changed:
  U   zope.lifecycleevent/trunk/CHANGES.txt
  U   zope.lifecycleevent/trunk/src/zope/lifecycleevent/__init__.py

-=-
Modified: zope.lifecycleevent/trunk/CHANGES.txt
===================================================================
--- zope.lifecycleevent/trunk/CHANGES.txt	2009-01-28 14:20:59 UTC (rev 95319)
+++ zope.lifecycleevent/trunk/CHANGES.txt	2009-01-28 14:24:51 UTC (rev 95320)
@@ -1,7 +1,11 @@
 Change History
 ==============
 
+3.4.1 (unreleased)
+------------------
 
+- Remove old module declarations from classes.
+
 3.4.0 (2007-09-01)
 ------------------
 

Modified: zope.lifecycleevent/trunk/src/zope/lifecycleevent/__init__.py
===================================================================
--- zope.lifecycleevent/trunk/src/zope/lifecycleevent/__init__.py	2009-01-28 14:20:59 UTC (rev 95319)
+++ zope.lifecycleevent/trunk/src/zope/lifecycleevent/__init__.py	2009-01-28 14:24:51 UTC (rev 95320)
@@ -49,10 +49,6 @@
 class ObjectCreatedEvent(zope.component.interfaces.ObjectEvent):
     """An object has been created"""
 
-    # for repr backward compatibility. In the next release cycle, we'll
-    # provide a testing framework that addresses repr migration.
-    __module__ = 'zope.app.event.objectevent'
-
     implements(IObjectCreatedEvent)
 
 
@@ -98,10 +94,6 @@
 class ObjectModifiedEvent(zope.component.interfaces.ObjectEvent):
     """An object has been modified"""
 
-    # for repr backward compatibility. In the next release cycle, we'll
-    # provide a testing framework that addresses repr migration.
-    __module__ = 'zope.app.event.objectevent'
-
     implements(IObjectModifiedEvent)
 
     def __init__(self, object, *descriptions) :
@@ -130,10 +122,6 @@
 class ObjectCopiedEvent(ObjectCreatedEvent):
     """An object has been copied"""
 
-    # for repr backward compatibility. In the next release cycle, we'll
-    # provide a testing framework that addresses repr migration.
-    __module__ = 'zope.app.event.objectevent'
-
     implements(IObjectCopiedEvent)
 
     def __init__(self, object, original):



More information about the Checkins mailing list