Commit 3671b2aa authored by Michel Pelletier's avatar Michel Pelletier

CVS is my friend. Really.

parent 8ba8f551
......@@ -10,7 +10,6 @@ class Attribute(InterfaceBase):
"""
self.__name__=__name__
self.__doc__=__doc__ or __name__
self.__tagged_values = {}
......
class InterfaceBase:
__tagged_values = {}
def getName(self):
""" Returns the name of the object. """
return self.__name__
......
......@@ -51,7 +51,6 @@ class Interface(InterfaceBase):
"Concrete attribute, %s" % k)
self.__attrs = attrs
self.__tagged_values = {} #why?
def getBases(self):
return self.__bases__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment