On Feb 25, 1:52 pm, Marco Streng <[email protected]> wrote: > I'm doing a long computation in Sage and I'd like to be able to print > some status information to the screen, such as the number of database > entries that I have tested, or the total time spent on different parts > of an algorithm.
I don't know and i think it's not possible, but a workaround is this: open a file (open(filename, 'w')) and write the status info into it, close it. repeat this for each new info message. outside sage and independently, open it in a terminal with "watch -d - n10 cat filename" -d highlights the differences, -n specifies the delay. h --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
