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

Commit

Permalink
add another test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Aug 24, 2022
1 parent 209d54f commit 3525f06
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/sage/rings/power_series_poly.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,12 @@ cdef class BaseRingFloorDivAction(Action):
sage: parent(f/3)
Power Series Ring in t over Rational Field
Floor division in case that the power series is not divisible by the divisor::
sage: f = A([2**n for n in range(6)]).O(6)
sage: g = f // 3; g
t^2 + 2*t^3 + 5*t^4 + 10*t^5 + O(t^6)
Another example::
sage: s = polygen(QQ,'s')
Expand Down

0 comments on commit 3525f06

Please sign in to comment.