[Zope-Checkins] CVS: Zope/lib/python/Interface - _Element.py:1.3.68.2
Philipp von Weitershausen
philikon@philikon.de
Wed, 30 Jul 2003 18:11:49 -0400
Update of /cvs-repository/Zope/lib/python/Interface
In directory cvs.zope.org:/tmp/cvs-serv12147
Modified Files:
Tag: Zope-2_7-branch
_Element.py
Log Message:
Merge from HEAD: bugfix for tagged values from Zope3.
=== Zope/lib/python/Interface/_Element.py 1.3.68.1 => 1.3.68.2 ===
--- Zope/lib/python/Interface/_Element.py:1.3.68.1 Fri Jul 25 13:35:34 2003
+++ Zope/lib/python/Interface/_Element.py Wed Jul 30 18:11:15 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. """