# HG changeset patch
# User Jean-Pierre Flori <jean-pierre.flor@ssi.gouv.fr>
# Date 1339168918 -7200
# Node ID a1af51143e1e3fbfd916cf673e63a815577c62bb
# Parent c6f673961d8a457fda4f651e50d3dc8cdd442600
#12173: remove obsolete reference to FLINT 1
diff --git a/sage/rings/polynomial/polynomial_rational_flint.pyx b/sage/rings/polynomial/polynomial_rational_flint.pyx
a
|
b
|
|
68 | 68 | cdef class Polynomial_rational_flint(Polynomial): |
69 | 69 | """ |
70 | 70 | Univariate polynomials over the rationals, implemented via FLINT. |
71 | | |
72 | | Internally, we represent rational polynomial as the quotient of an integer |
73 | | polynomial and a positive denominator which is coprime to the content of |
| 71 | |
| 72 | Internally, we represent rational polynomial as the quotient of an integer |
| 73 | polynomial and a positive denominator which is coprime to the content of |
74 | 74 | the numerator. |
75 | | |
76 | | The implementation is based on the C module fmpq_poly written on top of |
77 | | FLINT 1. |
78 | 75 | """ |
79 | 76 | |
80 | 77 | ########################################################################### |
81 | 78 | # Allocation & initialisation # |
82 | 79 | ########################################################################### |
83 | | |
| 80 | |
84 | 81 | cdef Polynomial_rational_flint _new(self): |
85 | 82 | """ |
86 | 83 | Quickly creates a new polynomial object in this class. |