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 3b75886 commit 37e30dbCopy full SHA for 37e30db
src/sage/features/msolve.py
@@ -59,8 +59,8 @@ def is_functional(self):
59
# if msolve_out.returncode != 0:
60
# return FeatureTestResult(self, False, reason="msolve -h returned "
61
# f"nonzero exit status {msolve_out.returncode}")
62
- if (msolve_out.stdout[:46] !=
63
- b'\nmsolve library for polynomial system solving\n'):
+ if (msolve_out.stdout[:45] !=
+ b'\nmsolve library for polynomial system solving'):
64
return FeatureTestResult(self, False,
65
reason="output of msolve -h not recognized")
66
return FeatureTestResult(self, True)
0 commit comments