Re: instance has no __call__ method

2010-12-11 Thread Steve Holden
t;, "copyright", "credits" or "license" for more information. >>>> import Muffle_ZeroDivision >>>> calc = Muffle_ZeroDivision.MuffledCalculator() >>>> calc = ('10/2') >>>> cal

Re: instance has no __call__ method

2010-12-10 Thread Dave Angel
ion calc = Muffle_ZeroDivision.MuffledCalculator() calc = ('10/2') calc = Muffle_ZeroDivision.MuffledCalculator() calc('10/2') Traceback (most recent call last): File "", line 1, in AttributeError: MuffledCalculator instance has no __call__ method ---

instance has no __call__ method

2010-12-10 Thread frank cui
lc = Muffle_ZeroDivision.MuffledCalculator() >>> calc = ('10/2') >>> calc = Muffle_ZeroDivision.MuffledCalculator() >>> calc('10/2') Traceback (most recent call last): File "", line 1, in AttributeError: MuffledCalculator instance has no __call__ method --

Re: SocketServer error: AttributeError: instance has no __call__ method

2010-02-10 Thread Gabriel Genellina
ck (most recent call last): File "/usr/lib/python2.6/SocketServer.py", line 320, in finish_request self.RequestHandlerClass(request, client_address, self) AttributeError: Negotiator instance has no __call__ method class ServerNegotiat

SocketServer error: AttributeError: instance has no __call__ method

2010-02-10 Thread Jordan Apgar
tServer.py", line 320, in finish_request self.RequestHandlerClass(request, client_address, self) AttributeError: Negotiator instance has no __call__ method here's the handler and my server: #server side negotiator from message import message from share