Re: instance has no __call__ method

2010-12-11 Thread Steve Holden
() calc = ('10/2') calc = Muffle_ZeroDivision.MuffledCalculator() calc('10/2') Traceback (most recent call last): File stdin, line 1, in module AttributeError: MuffledCalculator instance has no __call__ method

instance has no __call__ method

2010-12-10 Thread frank cui
() calc('10/2') Traceback (most recent call last): File stdin, line 1, in module AttributeError: MuffledCalculator instance has no __call__ method There is an AttributeError that this instance doesn't have the __call__

Re: instance has no __call__ method

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

SocketServer error: AttributeError: instance has no __call__ method

2010-02-10 Thread Jordan Apgar
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 sharedComs import * from Crypto.Hash import SHA256 from Crypto.Cipher

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

2010-02-10 Thread Gabriel Genellina
) Traceback (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 ServerNegotiator