I'll provide more details if necessary, but perhaps this is somethingI think you'll may need to post the smallest working example that you can. Internal python errors are pretty nasty to catch and you may be correct in assuming that a view is being deleted without you knowing about it.
pretty obvious to someone.
If you want to dig yourself, what may work in debugging is using the sys.getrefcount method call.
a = [] sys.getrefcount(a) ==> 2
this returns two because a if referenced once by the binding of a=[] and twice by actually using sys.getrefcount(...)
liberally sprinkling this through your function may help you diagnose the problem.
If the code is small enough, go ahead and post it and I'll scan it for obvious errors.
Brian Kelley Whitehead Institute for Biomedical Research
_______________________________________________ metakit mailing list - [EMAIL PROTECTED] http://www.equi4.com/mailman/listinfo/metakit
