On Sat, May 03, 2008 at 11:57:00AM -0700, mabshoff wrote: > On May 3, 8:44?pm, "William Stein" <[EMAIL PROTECTED]> wrote: > > ? ? ? ? sage -t ?devel/sage/sage/rings/ring.pyx > know issue. Track ticket should be up shortly. Singular related.
This is now #3098. It is caused by a rather subtle problem: An expect._synchronize is being called while _another_ expect._synchronize is still running. This caused the outer _synchronize to miss its trigger and time-out. The inner one was called through the garbage collector calling ExpectElement.__del__ calling clear() calling eval() calling _synchronize(). Any ideas on how we should properly handle this? The three options I can think of are either disabling the gc during any pexpect 'conversations' (which doesn't seem right to me), removing the eval() from the ExpectElement destructor (possibly using some form of delayed-evaluation list), or finding and removing the cyclic dependency that the GC is collecting here. I'm not entirely sure which one would be "right", if any. -Willem Jan --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---