Commit 63cb87bc authored by Michel Pelletier's avatar Michel Pelletier

whacked some methods

parent 4c7f6c15
......@@ -11,8 +11,6 @@ class Attribute(InterfaceBase):
self.__name__=__name__
self.__doc__=__doc__ or __name__
def isAttr(self):
return 1
......@@ -54,9 +54,6 @@ class Method(Attribute):
def __call__(self, *args, **kw):
raise Exceptions.BrokenImplementation(self.interface, self.__name__)
def isMethod(self):
return 1
def getSignatureInfo(self):
info = {}
for t in sig_traits:
......
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