This will probably help the person who is going to track down this
bug: It's not just in the notebook and it looks like newlines in the
input knock the interface out of sync (but not always!) The following
example fails reliably for me:

sage: magma.execute("a:=1;b:=2;")
''
sage: magma.execute("print a,b;")
'1 2'
sage: magma.execute("""a:=1;
....: b:=2;""")
'b:=2;'
sage:  magma.execute("print a,b;")
''

The first two lines work as expected. The third line seems to ruin it
(that "b:=2;" should be executed, not echoed) and after that nothing
works

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to