You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sagemathgh-36044: `sage.rings.number_field`: Modularization fixes, doctest cosmetics, `# needs`
<!-- ^^^^^
Please provide a concise, informative and self-explanatory title.
Don't put issue numbers in there, do this in the PR body below.
For example, instead of "Fixessagemath#1234" use "Introduce new method to
calculate 1+1"
-->
<!-- Describe your changes here in detail -->
- Avoiding going through symbolic square roots in `.S_unit_solver`
- `# needs sage.symbolic`, `# needs sage.libs.*`, `# needs
sage.rings.finite_rings` etc.
- Reformatting doctests to fit on the screen
- Codestyle fixes in doctests
- Block tags for `# optional - magma`
- Handle import errors in `NumberField._pushout_`
<!-- Why is this change required? What problem does it solve? -->
This is
- Part of: sagemath#29705
- Cherry-picked from: sagemath#35095
<!-- If this PR resolves an open issue, please link to it here. For
example "Fixessagemath#12345". -->
<!-- If your change requires a documentation PR, please link it
appropriately. -->
### 📝 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.
- [ ] 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
- sagemath#12345: short description why this is a dependency
- sagemath#34567: ...
-->
<!-- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->
URL: sagemath#36044
Reported by: Matthias Köppe
Reviewer(s): David Coudert, Kwankyu Lee, Matthias Köppe
Copy file name to clipboardexpand all lines: src/sage/rings/number_field/number_field_ideal_rel.py
+2-1
Original file line number
Diff line number
Diff line change
@@ -738,7 +738,8 @@ def ramification_index(self):
738
738
sage: K.ideal(2).ramification_index()
739
739
Traceback (most recent call last):
740
740
...
741
-
NotImplementedError: For an ideal in a relative number field you must use relative_ramification_index or absolute_ramification_index as appropriate
741
+
NotImplementedError: For an ideal in a relative number field you must use
742
+
relative_ramification_index or absolute_ramification_index as appropriate
742
743
"""
743
744
raiseNotImplementedError("For an ideal in a relative number field you must use relative_ramification_index or absolute_ramification_index as appropriate")
TypeError: unable to convert Number Field in a0 with defining polynomial x^2 + 1 over its base field to Number Field in a0 with defining polynomial x^2 + 1 over its base field
916
+
TypeError: unable to convert Number Field in a0 with defining polynomial x^2 + 1 over its base field
917
+
to Number Field in a0 with defining polynomial x^2 + 1 over its base field
916
918
sage: L in L
917
919
False
918
920
@@ -1672,7 +1674,7 @@ def _gen_relative(self):
1672
1674
sage: k.<a> = NumberField(x^2 + 1); k
1673
1675
Number Field in a with defining polynomial x^2 + 1
1674
1676
sage: y = polygen(k)
1675
-
sage: m.<b> = k.extension(y^2+3); m
1677
+
sage: m.<b> = k.extension(y^2 + 3); m
1676
1678
Number Field in b with defining polynomial x^2 + 3 over its base field
0 commit comments