From 3525f0676f688f5dbc8b505d389f1c9bb0a68c4a Mon Sep 17 00:00:00 2001 From: Jonathan Kliem Date: Wed, 24 Aug 2022 07:33:57 +0200 Subject: [PATCH] add another test --- src/sage/rings/power_series_poly.pyx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/sage/rings/power_series_poly.pyx b/src/sage/rings/power_series_poly.pyx index ea8fb0de813..41d32b85c3a 100644 --- a/src/sage/rings/power_series_poly.pyx +++ b/src/sage/rings/power_series_poly.pyx @@ -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')