Skip to content

Commit fba50d3

Browse files
author
Release Manager
committed
gh-41553: fix the error message in #41502
<!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> Follow #41502 fix the case sensetive problem. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [ ] The title is concise and informative. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #41553 Reported by: Chenxin Zhong Reviewer(s):
2 parents 980f51e + 4b0225f commit fba50d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/pkgs/configure/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=b4e31848f08c83ffe0793f5b1509830a15d4b53d
3-
sha256=08540d0d89cdeff76ca19e08146bd0f7ae4847ce34f181a1c95a46bda90fb823
2+
sha1=3ee4952f26855b89bf1eeccadc7e3e132e01709d
3+
sha256=fcb787575354a8cdd71cd4be57e2c4c55897143c973065ae130f42747a65202e
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fb670de31eef46a947c48d8a9cbb88a942809f52
1+
712d8d44be14caf75d3f21aede2ffe21823d7588

src/sage/matrix/matrix2.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10678,7 +10678,7 @@ cdef class Matrix(Matrix1):
1067810678
sage: decomp = bistochastic_as_sum_of_permutations(M) # needs sage.graphs
1067910679
Traceback (most recent call last):
1068010680
...
10681-
ValueError: The matrix is not bistochastic
10681+
ValueError: the matrix is not bistochastic
1068210682
"""
1068310683

1068410684
from sage.combinat.permutation import bistochastic_as_sum_of_permutations

0 commit comments

Comments
 (0)