[Zope3-checkins] CVS: Zope3/lib/python/Zope/Event - Subscribable.py:1.6

Steve Alexander steve@cat-box.net
Thu, 5 Dec 2002 12:18:12 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Event
In directory cvs.zope.org:/tmp/cvs-serv2092/lib/python/Zope/Event

Modified Files:
	Subscribable.py 
Log Message:
removed unnecessary comment. asserted __metaclass__ = type.


=== Zope3/lib/python/Zope/Event/Subscribable.py 1.5 => 1.6 ===
--- Zope3/lib/python/Zope/Event/Subscribable.py:1.5	Mon Oct 21 02:14:47 2002
+++ Zope3/lib/python/Zope/Event/Subscribable.py	Thu Dec  5 12:18:12 2002
@@ -16,6 +16,7 @@
 Revision information:
 $Id$
 """
+__metaclass__ = type
 
 from Interface.Registry.TypeRegistry import TypeRegistry
 from Zope.Exceptions import NotFoundError
@@ -24,7 +25,7 @@
 from IEvent import IEvent
 from Zope.Proxy.ProxyIntrospection import removeAllProxies
 
-class Subscribable(object): # do we need this to be a type?
+class Subscribable:
     """a global mix-in"""
     
     __implements__ = ISubscribable