Skip to content

Commit be0b5cf

Browse files
author
Release Manager
committed
gh-36647: fix random doctest error in src/sage/rings/polynomial/skew_polynomial_finite_field.pyx
Fixes #36646. Add `# random` tag to a doctest to avoid random failure reported in #36646. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #36647 Reported by: David Coudert Reviewer(s): Frédéric Chapoton
2 parents 4533ffb + e7949c4 commit be0b5cf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/pkgs/configure/checksums.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=0f90c993748bfc21ae382ac3ce6c19b434edb36c
3-
md5=b8d9355c732997566f68b60c8a8eb9cc
4-
cksum=2280021929
2+
sha1=75db52b3b9bc744c79bd958dfecc7e90bbf4591e
3+
md5=ee29fe6ac8fed617f118dd9f546eee19
4+
cksum=2457963166
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c0221f90a86e4b4bea4b45ff8de54727313bd755
1+
ec00fc5c59415d7f6c8c139749c7b0c81f100e1a

src/sage/rings/polynomial/skew_polynomial_finite_field.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ cdef class SkewPolynomial_finite_field_dense(SkewPolynomial_finite_order_dense):
10791079
we can get different orderings::
10801080
10811081
sage: factorizations2 = [ F for F in a.factorizations() ]
1082-
sage: factorizations == factorizations2
1082+
sage: factorizations == factorizations2 # random
10831083
False
10841084
sage: sorted(factorizations) == sorted(factorizations2)
10851085
True

0 commit comments

Comments
 (0)