Workaround: use // instead of / to do division without remainder in the ring.
``` sage: R.<c> = QQ[] sage: S.<x, y> = R[] sage: u = FractionField(S)(x^2 + y^2) sage: v = u.numerator()//u.denominator() sage: print(u.numerator().parent()) Multivariate Polynomial Ring in x, y over Univariate Polynomial Ring in c over Rational Field sage: print(v.numerator().parent()) Multivariate Polynomial Ring in x, y over Univariate Polynomial Ring in c over Rational Field ``` -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-devel. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-devel/e562b942-a865-445b-ac94-8f7eab48c0e5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
