That error means that one of your methods, probably the mdkd.op read
method, depends on itself (either it, or one of the methods called by
it, call read again), causing it to call itself again and again in an
infinite loop, until Python kills it (before it runs out of stack
space).

Something like this:

myobject.read calls somethingelse
somethingelse calls myobject.read
myobject.read calls somethingelse
somethingelse calls myobject.read
...

Just make sure that your read method does not cause another read of your
own object.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/731902

Title:
  maximum recursion depth exceeded while calling a Python object

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to