Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
17400: adapt doctest to changed simplify behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Sep 22, 2016
1 parent 895d900 commit 22c947a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/symbolic/series.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ cdef class SymbolicSeries(Expression):
sage: a,x,y = var('a,x,y')
sage: s = (1/(1-x/x^a*y)).series(y,3); s
1 + (x/x^a)*y + (x^2/(x^a)^2)*y^2 + Order(y^3)
1 + (x/x^a)*y + (x^2/x^(2*a))*y^2 + Order(y^3)
sage: s.simplify()
1 + (x*x^(-a))*y + (x^2*x^(-2*a))*y^2 + Order(y^3)
"""
Expand Down

0 comments on commit 22c947a

Please sign in to comment.