Skip to content

Commit f562bd2

Browse files
committed
fix doctest warnings in src/sage/categories/finite_complex_reflection_groups.py
1 parent e2e0f8d commit f562bd2

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/sage/categories/finite_complex_reflection_groups.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -555,22 +555,22 @@ def milnor_fiber_poset(self):
555555
sage: sum(x**P.rank(elt) for elt in P)
556556
18*x^2 + 15*x + 1
557557
558-
sage: W = ReflectionGroup(4) # optional - gap3
559-
sage: P = W.milnor_fiber_poset() # optional - gap3
560-
sage: P # optional - gap3
558+
sage: # optional - gap3
559+
sage: W = ReflectionGroup(4)
560+
sage: P = W.milnor_fiber_poset(); P
561561
Finite meet-semilattice containing 41 elements
562-
sage: sum(x**P.rank(elt) for elt in P) # optional - gap3
562+
sage: sum(x**P.rank(elt) for elt in P)
563563
24*x^2 + 16*x + 1
564564
565-
sage: W = ReflectionGroup([4,2,2]) # optional - gap3
566-
sage: W.is_well_generated() # optional - gap3
565+
sage: # optional - gap3
566+
sage: W = ReflectionGroup([4,2,2])
567+
sage: W.is_well_generated()
567568
False
568-
sage: P = W.milnor_fiber_poset() # optional - gap3
569-
sage: P # optional - gap3
569+
sage: P = W.milnor_fiber_poset(); P
570570
Finite poset containing 47 elements
571-
sage: sum(x**P.rank(elt) for elt in P) # optional - gap3
571+
sage: sum(x**P.rank(elt) for elt in P)
572572
16*x^3 + 24*x^2 + 6*x + 1
573-
sage: P.is_meet_semilattice() # optional - gap3
573+
sage: P.is_meet_semilattice()
574574
False
575575
"""
576576
I = self.index_set()

0 commit comments

Comments
 (0)