We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004bec9 commit 5cecd1cCopy full SHA for 5cecd1c
src/sage/rings/power_series_ring_element.pyx
@@ -442,8 +442,9 @@ cdef class PowerSeries(AlgebraElement):
442
443
EXAMPLES::
444
445
+ sage: from sage.rings.power_series_ring_element import PowerSeries
446
sage: R.<x> = PowerSeriesRing(ZZ)
- sage: PowerSeries.list(1+x^2)
447
+ sage: PowerSeries.list(1 + x^2)
448
Traceback (most recent call last):
449
...
450
NotImplementedError
@@ -462,8 +463,9 @@ cdef class PowerSeries(AlgebraElement):
462
463
464
465
466
467
- sage: PowerSeries.polynomial(1+x^2)
468
+ sage: PowerSeries.polynomial(1 + x^2)
469
470
471
0 commit comments