[Zope-Checkins] CVS: Zope/lib/python/Interface - _Element.py:1.5

Philipp von Weitershausen philikon@philikon.de
Wed, 30 Jul 2003 18:09:58 -0400


Update of /cvs-repository/Zope/lib/python/Interface
In directory cvs.zope.org:/tmp/cvs-serv11778/Interface

Modified Files:
	_Element.py 
Log Message:
Backported bugfix for tagged values from Zope3.


=== Zope/lib/python/Interface/_Element.py 1.4 => 1.5 ===
--- Zope/lib/python/Interface/_Element.py:1.4	Fri Jul 25 09:48:34 2003
+++ Zope/lib/python/Interface/_Element.py	Wed Jul 30 18:09:23 2003
@@ -26,8 +26,6 @@
     #
     #__implements__ = IElement
 
-    __tagged_values = {}
-
     def __init__(self, __name__=None, __doc__=''):
         """Create an 'attribute' description
         """
@@ -37,6 +35,7 @@
 
         self.__name__=__name__
         self.__doc__=__doc__
+        self.__tagged_values = {}
 
     def getName(self):
         """ Returns the name of the object. """