Ticket #3554: trac_3554_doctest_fixes.patch
| File trac_3554_doctest_fixes.patch, 1.2 kB (added by mabshoff, 5 months ago) |
|---|
-
a/sage/interfaces/macaulay2.py
old new 545 545 """ 546 546 EXAMPLES: 547 547 sage: m = macaulay2('matrix {{1,2},{3,4}}') #optional 548 sage: m 548 sage: m #optional 549 549 | 1 2 | 550 550 | 3 4 | 551 551 sage: latex(m) #optional … … 571 571 sage: R = macaulay2("QQ[x,y,z]/(x^3-y^3-z^3)") #optional 572 572 sage: x = macaulay2('x') #optional 573 573 sage: y = macaulay2('y') #optional 574 sage: print x+y 574 sage: print x+y #optional 575 575 x + y 576 576 sage: print macaulay2("QQ[x,y,z]") #optional 577 577 QQ [x, y, z]