-
-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #33463: Fix some corner and special cases concerning localizatio…
…n of integral domains The aime of this ticket is to fix the following issues: {{{#!sage sage: L = ZZ.localization(5) sage: o = L(0) sage: o.is_unit() Traceback (most recent call last) ... RecursionError: maximum recursion depth exceeded while calling a Python object }}} {{{#!sage sage: R = ZZ.localization(5) sage: S = R.localization(~5) Traceback (most recent call last) ... TypeError: no conversion of this rational to integer }}} {{{#!sage sage: Lau.<u, v> = LaurentPolynomialRing(ZZ) sage: LauL = Lau.localization(u+1) sage: LauL(~u) Traceback (most recent call last) ... NotImplementedError: }}} In addition a method `factor` is added. URL: https://trac.sagemath.org/33463 Reported by: soehms Ticket author(s): Sebastian Oehms Reviewer(s): Travis Scrimshaw, Samuel Lelièvre
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters